Skip to content

Instantly share code, notes, and snippets.

@ooooak
Last active August 29, 2015 14:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ooooak/16325ea18b837b734c45 to your computer and use it in GitHub Desktop.
Save ooooak/16325ea18b837b734c45 to your computer and use it in GitHub Desktop.
untrack files on local repo
# reset to last commit
git reset --hard HEAD
# remove un-tracked files
git clean -f -d
# see changed files
git status --short
# create alias in git
git config --global alias.update 'pull -v'
# revert commit massage
git reset --soft HEAD^
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment