diff --git a/docs/git/git.md b/docs/git/git.md index 3771dc6..a17d88f 100644 --- a/docs/git/git.md +++ b/docs/git/git.md @@ -133,9 +133,13 @@ def load_reference(name_or_id): `git remote add `: add a remote `git branch --set-upstream-to=/`: set up correspondence between local and remote branch +`git push`: send objects to default remote on current branch `git push `: send objects to remote `git push :`: send objects to remote, and update remote reference +`git push --force`: overwrite remote with local version +`git push --force-with-lease`: overwrite remote with local version if remote has not been modified + `git fetch []`: retrieve objects/references from a remote `git pull`: update the local branch with updates from its remote counterpart, same as `git fetch; git merge` `git pull -ff`: when possible resolve the merge as a fast-forward (only update branch pointer, don't create merge commit). Otherwise create a merge commit. @@ -211,17 +215,25 @@ It's generally recommended creating annotated tags so it's possible to have all ### Undo & [Rewriting History](https://www.themoderncoder.com/rewriting-git-history/) +`git rm -r --cached `: remove a file from being tracked `git commit --amend`: replace last commit by creating a new one (can add files or rewrite commit message) `git commit --amend -m "amended message"`: replace last commit by creating a new one (can add files or rewrite commit message) -`git commit --amend --no-edit`: replace last commit by creating a new one (can add files or rewrite commit message) +`git commit --amend --no-edit`: replace last commit by creating a new one (can add files or rewrite commit message) + `git reset HEAD `: unstage a file -`git reset `: undo all commits after specified commit, preserving changes locally -`git checkout `: discard changes -`git checkout -- `: discard changes, no output to screen +`git reset `: undo all commits after specified commit, preserving changes locally `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 checkout `: discard changes +`git checkout -- `: discard changes, no output to screen +`git restore .`: discard uncommitted changes +`git restore `: discard uncommitted changes to file +`git restore --source `: revert file to commit version +`git restore `: recover deleted file if previously committed + `git rebase -i HEAD~`: modify (reword, edit, drop, squash, merge, ...) *n* commits -`git rm --cached `: remove a file from being tracked +`git rebase -i `: modify (reword, edit, drop, squash, merge, ...) *from* commit to latest **WARNING**: Changing history can have nasty side effects