diff --git a/Git/git.md b/Git/git.md index d1796b3..36153b0 100644 --- a/Git/git.md +++ b/Git/git.md @@ -221,6 +221,7 @@ It's generally recommended creating annotated tags so it's possible to have all `git reset --soft `: revert to specific commit but keep changes and staged files `git reset --hard `: discard all history and changes back to specified commit `git rebase -i HEAD~`: modify (reword, edit, drop, squash, merge, ...) *n* commits +`git rm --cached `: remove a file from being tracked **WARNING**: Changing history can have nasty side effects