How can I clear my working directory in git?
feedback
|
|
To reset a specific file to the last-committed state (to discard uncommitted changes in a specific file):
This is mentioned in the
To reset the entire repository to the last committed state:
To remove untracked files, I usually just delete all files in the working copy (but not the A better way is to use
..will remove untracked files, including directories ( Relevant links:
| |||||||||||||
feedback
|
Edit:
It's not well advertised but | ||||
|
feedback
|
|
What do you mean with "clear"?
Or do you want to reset your working copy to the latest repository version?
| |||||
feedback
|