Git Cheat Sheet - coleman-word/DevOps-Guide GitHub Wiki
by: Coleman Word
Configure the author name and email address to be used with your commits. Note that Git strips some characters (for example trailing periods) from user.name.
git config --global user.name "Sam Smith" git config --global user.email [email protected]
git init Check out a repository Create a working copy of a local repository: git clone /path/to/repository
git clone username@host:/path/to/repository Add files Add one or more files to staging (index): git add
git add *
git commit -m "Commit message"
git commit -a Push Send changes to the master branch of your remote repository: git push origin master
git status Connect to a remote repository If you haven't connected your local repository to a remote server, add the server to be able to push to it: git remote add origin
Branches Create a new branch and switch to it: git checkout -b
git checkout List all the branches in your repo, and also tell you what branch you're currently in: git branch
git branch -d Push the branch to your remote repository, so others can use it: git push origin
git push --all origin
git push origin : Update from the remote repository Fetch and merge changes on the remote server to your working directory: git pull
git merge View all the merge conflicts: View the conflicts against the base file:
git diff git diff --base
git diff After you have manually resolved any conflicts, you mark the changed file: git add Tags You can use tagging to mark a significant changeset, such as a release: git tag 1.0.0
CommitId is the leading characters of the changeset ID, up to 10, but must be unique. Get the ID using:
git log Push all tags to remote repository: git push --tags origin Undo local changes If you mess up, you can replace the changes in your working tree with the last content in head: Changes already added to the index, as well as new files, will be kept.
git checkout -- Instead, to drop all your local changes and commits, fetch the latest history from the server and point your local master branch at it, do this: git fetch origin
git reset --hard origin/master Search Search the working directory for foo(): git grep "foo()"