-
Initializing a repository
git initStaging files
git add file1.js # Stages a single file git add file1.js file2.js # Stages multiple files git add *.js # Stages with a pattern git add . # Stages the current directory and all its contentViewing the status
git status # Full status git status -s # Short statusCommitting the staged files
git commit -m “Message” # Commits with a one-line message git commit # Opens the default editor to type a long messageSkipping the staging area
git commit -am “Message”Removing files
git rm file1.js # Removes from working directory and staging area git rm --cached file1.js # Removes from staging area onlyRenaming or moving files
git mv file1.js file1.txtViewing the staged/unstaged changes
git diff # Shows unstaged changes git diff --staged # Shows staged changes git diff --cached # Same as the aboveViewing the history
git log # Full history git log --oneline # Summary git log --reverse # Lists the commits from the oldest to the newestViewing a commit
git show 921a2ff # Shows the given commit git show HEAD # Shows the last commit git show HEAD~2 # Two steps before the last commit git show HEAD:file.js # Shows the version of file.js stored in the last commitUnstaging files (undoing git add)
git restore --staged file.js # Copies the last version of file.js from repo to indexDiscarding local changes
git restore file.js # Copies file.js from index to working directory git restore file1.js file2.js # Restores multiple files in working directory git restore . # Discards all local changes (except untracked files git clean -fd # Removes all untracked filesRestoring an earlier version of a file
git restore --source=HEAD~2 file.js -
Viewing the history
git log --stat # Shows the list of modified files git log --patch # Shows the actual changes (patches)Filtering the history
git log -3 # Shows the last 3 entries git log --author=“Saboya” git log --before=“2020-07-21” git log --after=“one week ago” git log --grep=“GUI” # Commits with “GUI” in their message git log -S“GUI” # Commits with “GUI” in their patches git log hash1..hash2 # Range of commits git log file.txt # Commits that touched file.txtFormatting the log output
git log --pretty=format:”%an committed %H”Creating an alias
git config --global alias.lg “log --oneline"Viewing a commit
git show HEAD~2 git show HEAD~2:file1.txt # Shows the version of file stored in this commitComparing commits
git diff HEAD~2 HEAD # Shows the changes between two commits git diff HEAD~2 HEAD file.txt # Changes to file.txt onlyChecking out a commit
git checkout dad47e # Checks out the given commit git checkout master # Checks out the master branchFinding a bad commit
git bisect start git bisect bad # Marks the current commit as a bad commit git bisect good ca49180 # Marks the given commit as a good commit git bisect reset # Terminates the bisect sessionFinding contributors
git shortlogViewing the history of a file
git log file.txt # Shows the commits that touched file.txt git log --stat file.txt # Shows statistics (the number of changes) for file.txt git log --patch file.txt # Shows the patches (changes) applied to file.txtFinding the author of lines
git blame file.txt # Shows the author of each line in file.txtTagging
git tag v1.0 # Tags the last commit as v1.0 git tag v1.0 5e7a828 # Tags an earlier commit git tag # Lists all the tags git tag -d v1.0 # Deletes the given tag -
Managing branches
git branch bugfix # Creates a new branch called bugfix git checkout bugfix # Switches to the bugfix branch git switch bugfix # Same as the above git switch -C bugfix # Creates and switches git branch -d bugfix # Deletes the bugfix branchComparing branches
git log master..bugfix # Lists the commits in the bugfix branch not in master git diff master..bugfix # Shows the summary of changesStashing
git stash push -m “New tax rules” # Creates a new stash git stash list # Lists all the stashes git stash show stash@{1} # Shows the given stash git stash show 1 # shortcut for stash@{1} git stash apply 1 # Applies the given stash to the working dir git stash drop 1 # Deletes the given stash git stash clear # Deletes all the stashesMerging
git merge bugfix # Merges the bugfix branch into the current branch git merge --no-ff bugfix # Creates a merge commit even if FF is possible git merge --squash bugfix # Performs a squash merge git merge --abort # Aborts the mergeViewing the merged branches
git branch --merged # Shows the merged branches git branch --no-merged # Shows the unmerged branchesRebasing
git rebase master # Changes the base of the current branchCherry picking
git cherry-pick dad47ed # Applies the given commit on the current branch
Last active
November 16, 2020 00:00
-
-
Save saboyadev/bb201d55a7ef18a5aef623d4cc7d5d7a to your computer and use it in GitHub Desktop.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment