git reset --hard # removes staged and working directory changes
## !! be very careful with these !!
## you may end up deleting what you don't want to
## read comments and manual.
git clean -f -d # remove untracked
git clean -f -x -d # CAUTION: as above but removes ignored files like config.
git clean -fxd :/ # CAUTION: as above, but cleans untracked and ignored files through the entire repo (without :/, the operation affects only the current directory)
Um zu sehen, was gelöscht wird, ohne es tatsächlich zu löschen, verwenden Sie die -n
Flagge (dies ist im Grunde ein Testlauf). Wenn Sie bereit sind, tatsächlich zu löschen, entfernen Sie das -n
Flagge:
git clean -nfd
1 Stimmen
@Joel & Wayfarer: warum versuchst du nicht
git help reset
ygit help clean
3 Stimmen
Es ist eine gute Idee, dafür einen Alias in der Git-Konfiguration anzulegen ;)