Is there a git command to revert all uncommitted changes in a working tree and index and to also remove newly created files and folders?
You can run these two commands:
# Revert changes to modified files. git reset --hard # Remove all untracked files and directories. # '-f' is force, '-d' is remove directories. git clean -fd
1.4m articles
1.4m replys
5 comments
57.0k users