Horje
remove/undo all modified files git Code Example
remove/undo all modified files git
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)




Shell

Related
linux search for line in file Code Example linux search for line in file Code Example
how to convert ts to mp4 with ffmpeg Code Example how to convert ts to mp4 with ffmpeg Code Example
how to install pyaudio in ubuntu Code Example how to install pyaudio in ubuntu Code Example
yarn run ios device Code Example yarn run ios device Code Example
syncthing debian install Code Example syncthing debian install Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
14