Is there a way to do a git pull that ignores any local file changes without blowing the directory away and performing a git clone?
|
|
If you mean you want the pull to overwrite local changes, doing the merge as if the working tree were clean, well, clean the working tree:
If there are untracked local files you could use If on the other hand you want to keep the local modifications somehow, you'd use stash to hide them away before pulling, then reapply them afterwards:
I don't think it makes any sense to literally ignore the changes, though - half of pull is merge, and it needs to merge the committed versions of content with the versions it fetched. |
|||||||
|
|
Look at git stash to put all of your local changes into a "stash file" and revert to the last commit. At that point, you can apply your stashed changes, or discard them. |
|||
|
|
|
If you are on Linux:
git fetch
for file in The for loop will delete all untracked files which are on the repo, so |
|||
|
|