Note
Additional Resources:
https://github.com/github/training-kit http://justinhileman.info/article/git-pretty/git-pretty.png http://www.ndpsoftware.com/git-cheatsheet.html https://github.com/k88hudson/git-flight-rules http://githut.info/ for finding repos by language on gh https://github.com/tomheon/git_by_a_bus cool analytics http://visualize-your-git.herokuapp.com/ http://tom.preston-werner.com/2009/05/19/the-git-parable.html
Note
Git is the most popular source code management and version control system in the open source community. Its complexity and power make it the best choice for most projects, while simultaneously giving it a daunting learning curve for newcomers. This talk will assume no background knowledge of version control, and will teach the basics of Git and GitHub in order to give you an accurate mental model of what the tool does, and help you fix mistakes then ask the right questions if you run into problems using it later.
Note
You won’t memorize all the commands in 2 hours but this will help you ask the right questions.
Some changes manual, other changes automatic
Note
We’re going to talk about a lot of commands now.
Don’t be afraid. Don’t expect to know everything at first.
These slides are online; the link will show up again at the end.
Tell Git who you are:
$ git config --global user.name "John Doe"
$ git config --global user.email johndoe@example.com
Install Git (also tk and tcl if you want the GUI)
Pick a project to work on
Note
The name and email you tell Git will be visible to everyone you share your commits with. If you use a public GitHub repo, that’s the entire world.
ECDSA – elliptic-curve digital signature algorithm – gives much smaller keys with comparable security
GitHub can handle ECDSA, GitLab only does RSA as of 5.1.0
You can time travel through the history of any project!
Note
This assumes that you have some number of projects you work on, each one has a history of changes, and those histories are tracked separately. A repository is the basic unit of a directory whose changes we want to track.
Database of snapshots of your code
Universe whose history you can travel through
$ git init # Make a brand new repo
$ git clone <git clone url> # Start with a copy of another
# git@github.com:organization/reponame.git
# https://github.com/organization/reponame.git
$ ls .git/
$ git show
fatal: bad default revision 'HEAD'
# To be expected with nothing in the repo
$ git show
fatal: Not a git repository (or any of the
parent directories): .git
# not in a repo
$ git log
Warning
This deletes your history. Only do it if you really want to stop having a Git repo here.
$ rm -rf .git
What if you had to publish every change as soon as you made it?
Unstaged | Staged | Committed
Note
It would be simpler to understand the system if we only let you commit one file at a time, but it’s more important to have total control of what changes go into what commit.
Git gives you a staging area where you can get a set of changes just right, before setting them in stone.
You decide exactly where time travelers are allowed to land.
$ touch bar
$ git status
On branch master
Initial commit
Changes to be committed:
(use "git rm --cached <file>..."
to unstage)
new file: foo
Untracked files:
(use "git add <file>..." to include
in what will be committed)
bar
$ git commit --dry-run
$ git rm --cached foo
$ git reset HEAD foo
Time travelers get some signs and instructions when they arrive
Note
Staging changes is all about deciding exactly what state it should be easy to go back to. Creating a commit adds some useful metadata to a snapshot of your repository.
snapshot of changes, author, date, committer (can differ from author), parent commit
$ git commit
$ man git-commit
-a, --all
-i, --interactive
--reset-author
--date=<date> (see DATE FORMATS in man page)
--allow-empty
--amend
-o, --only
-S, --gpg-sign
Note
-o is for only files from command line disregarding the stash Specifying file names disregards staged changes, plus stages all current contents
# details on latest or specified
$ git show
# Summary of recent, or a range
$ git log
$ man gitrevisions # ranges
What about commits per file?
$ git blame <file>
$ git show
$ git show --oneline
# see PRETTY FORMATS section of
$ man git-show
# Check the GPG signature
$ git show --show-signature
# Want a GUI?
$ gitk
# just one file
$ git checkout <commit> <filename>
$ git add <filename>
$ git commit -m "i put that file back how it was"
Or undo the whole commit
$ git revert <commit to revert to>
Note
next: remotes Reverting makes a revert commit. Reversability > hiding mistakes
Time travelers get a list of especially interesting locations to visit
$ man git-tag
$ git tag -m <msg> <tagname>
Default is lightweight tag – just a reference for SHA-1 of latest commit
Pass -s or -u <key-id> to GPG-sign
# List all available tags
$ git tag
# List tags matching regex
$ git tag -l 'regex'
# I want this version!
$ git checkout <tag name>
$ git tag -d <tagname>
# And remove it from a remote repo
$ git push origin :refs/tags/<tagname>
You can work on separate sets of changes that don’t affect each other
A parallel path of development, starting from a commit that’s in the tree
Note
Point out why the arrows are “backwards”
# track remote branch by default if one matches
$ git checkout -b <branchname>
# Shorthand for:
$ git branch <branchname> # create
$ git checkout <branchname> # check out
# Pushing a branch to a remote
$ git push <remotename> <branchname>
$ git branch
$ git show <branchname>
Note
GitHub’s “network” graph and gitk are good for this
# delete only if fully merged
$ git branch -d
# Delete, I Don't care what I lose
$ git branch -D
# delete remote branch
$ git push <remotename> :<branchname>
Someone else could work on the same repo in a parallel universe
Note
Whenever you get multiple people working on the same project, they’ll want to make different changes and then bring them back together. To do this, Git needs to let history continue in two different directions and then bring the changes from each back together.
Another clone of more or less the same repo
(remember when we cloned to get a copy?)
$ git config -e
# OR
$ git remote show <name>
From one of my git configs...
[remote "origin"]
url = git@github.com:monte-language/monte.git
fetch = +refs/heads/*:refs/remotes/origin/*
[remote "edunham"]
url = git@github.com:edunham/monte.git
fetch = +refs/heads/*:refs/remotes/edunham/*
Do you prefer text editor...
$ git config -e
# delete or change remote
... or commands?
$ man git-remote
$ git remote rename <old> <new>
$ git remote remove <name>
Note
“Undoing” push to remote is... trickier next: tags
Note
“a group of developers is called a merge conflict”
# Branch you're changing
$ git checkout mywork
$ git merge master
# Merge conflicts?
$ git status
On branch mywork
You have unmerged paths.
(fix conflicts and run "git commit")
Note
COMMIT OR STASH CHANGES FIRST
<<<<<<< HEAD
This content was in mywork but not master
=======
This content was in master but not mywork
>>>>>>> master
$ git diff <commit before> <merge commit>
# before merging, see changes
$ git log ..otherbranch
$ git diff ...otherbranch
$ gitk ...otherbranch
Changing history. Means others will have to force pull.
Note
Don’t do this unless you know what you’re doing... But here’s how to know what you’re doing.
$ git rebase -i <commit range>
HEAD~4
# last 4 commits
# Oops I forgot to pull
$ git pull --rebase
# Rebase 1a20f51..147c812 onto 1a20f51
#
# Commands:
# p, pick = use commit
# r, reword = use commit, but edit the commit message
# e, edit = use commit, but stop for amending
# s, squash = use commit, but meld into previous commit
# f, fixup = like "squash", but discard this commit's log message
# x, exec = run command (the rest of the line) using shell
#
# These lines can be re-ordered; they are executed from top to bottom.
#
# If you remove a line here THAT COMMIT WILL BE LOST.
Note
Make sure you have your git editor set!
I should never have done that
$ git reset --hard ORIG_HEAD
I’m stuck in a broken rebase, get me out
$ git rebase --abort
Watch Linus’s talk for more detail
Permission denied (publickey).
fatal: Could not read from remote
repository.
Please make sure you have the
correct access rights and the
repository exists.
HTTP clone prompts for username and password
SSH clone uses key from your account
Note
https://github.com/blog/2111-issue-and-pull-request-templates https://docs.travis-ci.com/user/pull-requests https://circleci.com/docs/fork-pr-builds http://help.appveyor.com/discussions/questions/203-auto-run-tests-on-pull-requests https://wiki.jenkins-ci.org/display/JENKINS/GitHub+pull+request+builder+plugin
Focused commits with clear commit messages
Follow project standards for branching, tagging, etc.
$ git checkout branch
point HEAD at the tip of the specified branch
$ git checkout <revision> file
$ man gitrevisions
Commit hash
Regex on commit message * :/broken
revision:path
Binary Search:
git bisect start
git bisect bad <commit>
git bisect good <commit>
git bisect next
git bisect reset <commit>
$ git checkout <branch that needs special commit>
$ git cherry-pick <special commit from another branch>
$ git format-patch origin/master
0001-first-commit.patch
0002-second-commit.patch
# I wonder what this patch does
$ git apply --stat 0001-first-commit.patch
# Let's merge!
$ git apply 0001-first-commit.patch
# Does your project use signed-off-by?
$ git am --signoff < 0001-first-commit.patch