mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-06 10:56:41 +00:00
Add note on git rm
This commit is contained in:
parent
84214871a9
commit
50b7be9011
1 changed files with 1 additions and 0 deletions
|
@ -221,6 +221,7 @@ It's generally recommended creating annotated tags so it's possible to have all
|
||||||
`git reset --soft <commit>`: revert to specific commit but keep changes and staged files
|
`git reset --soft <commit>`: revert to specific commit but keep changes and staged files
|
||||||
`git reset --hard <commit>`: discard all history and changes back to specified commit
|
`git reset --hard <commit>`: discard all history and changes back to specified commit
|
||||||
`git rebase -i HEAD~<n>`: modify (reword, edit, drop, squash, merge, ...) *n* commits
|
`git rebase -i HEAD~<n>`: modify (reword, edit, drop, squash, merge, ...) *n* commits
|
||||||
|
`git rm --cached <file>`: remove a file from being tracked
|
||||||
|
|
||||||
**WARNING**: Changing history can have nasty side effects
|
**WARNING**: Changing history can have nasty side effects
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue