Sometimes you get Git messages like
I've learned this by a discussion on Stackoverflow: http://goo.gl/I9NMxO.
The following untracked working tree files would be overwritten by checkoutThe following command can be helpful in that case.
git clean -d -fx ""See http://www.kernel.org/pub/software/scm/git/docs/git-clean.html
-x means ignored files are also removed as well as files unknown to git.
-d means remove untracked directories in addition to untracked files.
-f is required to force it to run.
I've learned this by a discussion on Stackoverflow: http://goo.gl/I9NMxO.
Keine Kommentare:
Kommentar veröffentlichen