culTest

    One of the 24 questions in this topic

    How much do you know about Git & GitHub: History Engineering and Automation?

    Which command cleans untracked files and folders from the working directory?

    Answers

    git rm -rf
    git clean -fdCorrect
    git reset --hard
    git prune

    It removes clutter that is not in Git or .gitignore to leave the directory clean.