17 Feb 2016
Checkouts on Local Workstations
git status
Shows the files or paths that have differences between the current commit and the index file, between the workspace as a whole and the index, or any path in the workspace that isn't be tracked by git.
git diff [commit/branch]
Shows the differences not currently in the index. Add a specific commit or branch if the comparison should be specific.
git diff --cached [commit]
Displays changes staged against what has been committed. Specific [commit] is optional; will use the latest commit if left off.
git add [file/directory]
Adds the specified files or directories to the index for staging into the next commit. Can used specific filenames or wildcard with an *. * or . can be used to add all changed files and directories.
git add -u
Only adds files modified to the staging area. New files are left out.
git rm file
Removes the specific file from both the index and the workspace.
git mv file
Moves the specified file in both the index and workspace.
git clean
Removes all files in the current directory tree that are not being tracked.
git commit -a
Commits all files changed since the last commit, and deletes files removed from the workspace.
git checkout [file/directory]
Updates the file or directory.
git checkout -- [somefilename]
If unstaging isn't enough, but you want all changes on a file reverted to the last commit, use "checkout".
git reset [somefilename]
If you decide to not commit a change, use this command to unstage a change.
git reset --hard
All files changed since last commit are lost and workspace reverts to the local tree. Recommndations are to only use if a merge has caused an insurmountable conflict.
git reset --hard origin/master
All files changed since last commit on the local repository are lost, and now match the remote/branch. Origin/master are used here because those are typical names.
git reset HEAD [file]
Removes file typed in from being included in the next commit. The changes are still available, but not included in the next commit.
git reset --soft HEAD^
Removes the last commit, but the changes are kept.
git checkout [newbranch]
Switch to the new branch.
git checkout -b [newbranch]
Create new branch and switch to it at the same time.
git merge [branch]
Merge your changes from a dev branch into the master or current branch.
git rebase upstream
Reverts all commits from the time the branch diverged.
git cherry-pick [commit]
Installs changes for the selected [commit] into the current branch.
git revert [commit]
Reversese any change made at the selected [commit] and then commits the result.
git clone [repo]
Downloads the specified repo to the local workarea and creates a checkout of the master. is typically a remote like https://github.com/[username]/[yourrepo].git, but it can also be a local repository.</p>
git pull origin master
Pulls code from your "origin" remote, master and pulls changes into the local. Useful if code in your local repository is not as current as, say, the GitHub code.
17 Feb 2016
Temporary Storage for Modifications
git stash [save] [msg]
Store all local modifications to a stash. Save and the msg parameters are optional.
git stash apply [stash]
Brings in changes from the specified stash to the work area. Ommit the and it pulls the default stash.</p>
git stash pop
Apply the changes from the last pop and delete that stash. Can specify a stash at the end.
git stash list
List all of the stashes currently available.
git stash show [stash]
Outputs the difference in the stash and the parent. [stash] can be left off and the system will show the latest stash.
git stash drop [stash]
Remove one stash from the list. If the [stash] is left off, the command drops the latest version.
git stash clear
Removes all stashes.
git stash branch [branchname] [stash]
Create and checkout the branch named [branchname] using the [stash] listed. If [stash] is left off of the command, the latest is used.
17 Feb 2016
Commands Specific to the Repository
git commit -m ['comment about this commit']
Commit the file or files added to the staging area with a comment specifying what has changed.
git commit --amend
Quick modification of the last commit with latest changes.
git diff [commit] [commit]
Specify two different commits and view the differences.
git branch [-(r), (a)]
Without the options, command displays all branches for the local repository including the master. -r shows remote branches. -a displays local and remote.
git init
Initialize your current folder into
git version control.
git add test.txt
Add a file name test.txt to the staging area.
git add '*.txt'
Add all txt files to the staging area.
git add *
Add every file in the repository to the staging area.
git log [--decorate, stat, author=(author), after="MM DD YYYY", before="MM DD YYYY", follow, merge]
Lists the revision history for the current branch. Options do not have to be used, but are effective in "prettifying" the data or drilling down to specifics on a large project.
git branch -d [somebranch]
Once completing a merge, if you don't need the branch any longer, make sure do delete it with the -d qualifier.
git branch -D [somebranch]
If you haven't fully merged a branch, but want to delete it anyway, the -D qualifier will work, but be careful using it.
git branch --track [new] [remote branch]
Create a new local branch that tracks on remote branch.
git branch -r
List all remote branches associated with this repository.
git fetch [remote] [refspec]
Downloads objects and files from remote to a local repository, but does not merge the changes.
git push
Updates the local server with all commits to the comparable branches. If a branch has not been pushed to the local server, the push will not take place there.
git push -u origin master
Push your changes to GitHub or whatever remote repository you have setup. The -u tells Git to remember the parameters so you can just enter "git push" the next time you "push".
git push -u origin master [newbranch]
Push to a remote except a new branch (not master)
git push -u origin master --force
It's strongly encouraged to use a pull first, merge change, then push back. However, if you want to write over the remote with your local commits, use the --force parameter. This must only be used cautiously!
git push [remote] :[branch]
Remote the remote branch associated with the remote repository.
git remote add origin https://github.com/[your user]/[your repository].git
If you want to store your code or data on GitHub, add a remote to your GitHub repository. The name of the repository is "origin" here, but you can name it what you will.
git diff HEAD
Useful for after the "git pull" command. If there are changes made during the pull, "git diff HEAD" will tell you exactly where the changes occurred. (Use Q to quit back to the command line).
git diff --staged
Conversely using "--staged" after a "git add" can show you what changes have been staged against changes already committed.
git branch [newbranch]
Create new branch.
git rm '*.txt'
Remove all files with the extenstion .txt from the current repository master or branch.
git rm -r [yourfolder]
Remove an entire folder and it's contents.
git commit -m "remove"
You have to do a commit when removing, just like when adding.
git commit -am "remove"
If you deleted a file outside of git, this command automatically removes it from the tree during the commit.
git push
Push your changes through to GitHub.
git show
Shows the data involved in the last commit via terminal. Shift+zz drops back to the command line.
git config --global user.name [username]
Attaches your specified name to a commit.
git config --global user.email [email address]
Attaches your specified email address to a commit.
git config --global color.ui auto
Auto, True, or False can be used here. True leaves the color always on, no matter if it's the terminal, pipe, or file. False turns it off everywhere. Use Auto if you like the color scheme on the terminal but don't want to carry the color coding to other paths.
gitk
Opens the GUI interface to show the branch history.
git gui
GUI interface built into git.
git blame [filename]
Determine who modified each line of the stated file.
git gui blame [filename]
If you need to verify many lines, the GUI might be better.