git branching

30
Git Branching What is a branch?

Upload: sakina

Post on 05-Feb-2016

58 views

Category:

Documents


0 download

DESCRIPTION

Git Branching. What is a branch?. Review: Distributed - Snapshots. Files are stored by SHA-1 hash rather than filename Stored in git database in compressed format Must “checkout” from database into working directory to edit In this example, files A, B and C are tracked. - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: Git Branching

Git Branching

What is a branch?

Page 2: Git Branching

Review: Distributed - Snapshots

Files are stored by SHA-1 hash rather than filenameStored in git database in compressed formatMust “checkout” from database into working directory to editIn this example, files A, B and C are tracked

Page 3: Git Branching

Example commit, 3 files

Page 4: Git Branching

After 3 commits

Page 5: Git Branching

Default branch is master

master moves forward automatically when you commit

git push origin master … now you know what master means

Page 6: Git Branching

Add a branch

cmd: git branch testing

Why is creating a branch in git cheap and quick? Because it’s just creating a 40-character SHA-1 checksum of the commit it points to

Page 7: Git Branching

But you’re still on master

HEAD = pointer to current branch

NOTE: concept of HEAD is different from CVS

Page 8: Git Branching

Use checkout to change

cmd: git checkout testing

Page 9: Git Branching

Make changes on that branch

edit test.rb (e.g., vim test.rb)cmd: git commit –a –m ‘made a change’

Page 10: Git Branching

Switch back to master

cmd: git checkout master

NOTE: This also reverts files in your working directory (e.g., c:\mycode) back to master.

So edit to test.rb no longer in your working directory (but you haven’t lost it, as long as you committed before switching – remember it will be in your local database. But don’t delete .git!)

Page 11: Git Branching

Change master branch

edit test.rb againcmd: git commit –a –m ‘made other changes’

Page 12: Git Branching

Example Steps (for future reference) Create Java Project Create class TheBrancher,

including main git init git add src/* git commit -m "Initial load"

Updated source with a "leaf" variable

public class TheBrancher {

private String theLeaf;

public void updateLeaf(String newLeaf) {

theLeaf = newLeaf;

}

public void showLeaf() {

System.out.println(theLeaf);

}

public static void main(String[] args) {

TheBrancher brancher = new TheBrancher();

brancher.updateLeaf("Turning yellow for fall");

brancher.showLeaf();

}

}

Page 13: Git Branching

Example, continued git commit -am "added a leaf" git log –graph –decorate --

oneline

# create a branch git branch needTree # see the branch git branch # switch to new branch git checkout needTree

private String theTree;

public void makeATree() {

theTree = "Aspen";

}

@Override

public String toString() {

return "TheBrancher [theLeaf=" + theLeaf + ",

theTree=" + theTree + "]";

}

# and in main

brancher.makeATree();

System.out.println(brancher);git commit -am "Added a tree"git status# go back to mastergit checkout master# what happened in Eclipse?

Page 14: Git Branching

Getting it back together At this point, no changes have been made on

master Can easily “merge” the two branches

git checkout master git branch –no-merged git merge needTree

Done with FAST FORWARD option (just moves a pointer)

Page 15: Git Branching

Basic Merging

No conflicts

Page 16: Git Branching

Need to switch to an urgent fix

git checkout mastergit checkout –b hotfixvim index.html git commit –a –m ‘fixed broken code’

NOTE: git won’t let you switch to master if you have uncommitted changes that conflict with the code you’re checking out. So you should have a clean slate before you switch (stash and amend can deal with this – later topics)

git checkout -b creates branch AND checks out

Page 17: Git Branching

Now merge hotfix and master

git checkout mastergit merge hotfix

This will be a “fast forward” merge – because branch was directly upstream, git just moves pointer forward.

Page 18: Git Branching

A little cleanup, then return to issue 53

git branch –d hotfixgit checkout iss53vim index.htmlgit commit –a –m ‘finished footer’

Be careful with branch –d. OK in this example, just a duplicate pointer. May not always be the case.

Note that work done on hotfix is not part of iss53 branch.

Page 19: Git Branching

Basic merge

$ git checkout master $ git merge iss53 Merge made by recursive. README | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)

git identifies the best common ancestor to use for merge

Page 20: Git Branching

Basic Merge result

master now includes hotfix and iss53

Remove iss53 if you want: git branch –d iss53

Page 21: Git Branching

Remote Branches

Supplemental Material

Page 22: Git Branching

Remote Branches All the branching we’ve done so far has been

local Remote repositories (e.g., github) also have

branches

Page 23: Git Branching

Understanding remote branches

Git server – it’s not always github!

right now, only have master

clone files from server into your working directory.

Remote branch – on server – [remote]/[branch]

clone names your remote origin by default

Local branch – [branch]

Page 24: Git Branching

Branches diverging

You’ve made changes.

Someone else pushed changes.

master on remote NOT the same as your master!

BUT, both are master (we’re not dealing with local branches yet)

Page 25: Git Branching

Synchronize your work

note: fetch doesn’t merge!Need to:

git fetch origingit merge origin/master(handle conflicts if any, note

that branch name is origin/master)git push

You can also do:git pull origin master(does fetch and merge)

Page 26: Git Branching

Tracking Branch A tracking branch is a local branch that has a

direct relation to a remote branch If you’re on a tracking branch and type git

push, Git knows which server and branch to push to

git pull on a tracking branch fetches remote references and merges

clone automatically creates a master branch that tracks origin/master. So git push and git pull work right out of the box.

You can add other tracking branches: git checkout --track

Page 27: Git Branching

Forking If you want to contribute to a project but don’t

have push access, you can do a fork… create your own copy.

Main project can pull in those changes later by adding them as remotes and merging in the code from the fork.

Page 28: Git Branching

Configuration It’s a good idea to set up your .gitignore file A global file (.gitignore_global) can also be very

useful for ignoring files in every git repositories on your computer.

Local per-repository rules can be added to the .git/info/exclude file in your repository

Example for Java:*.class# Package Files #*.jar*.war*.ear

Be sure to read! : https://help.github.com/articles/ignoring-files

Page 29: Git Branching

More useful infohttp://stackoverflow.com/questions/8358035/whats-the-difference-between-git-revert-checkout-and-reset

These three commands have entirely different purposes. They are not even remotely similar.

git revert

This command creates a new commit that undoes the changes from a previous commit. This command adds new history to the project (it doesn't modify existing history).

git checkout

This command checks-out content from the repository and puts it in your work tree. It can also have other effects, depending on how the command was invoked. For instance, it can also change which branch you are currently working on. This command doesn't make any changes to the history.

git reset

This command is a little more complicated. It actually does a couple of different things depending on how it is invoked. It modifies the index (the so-called "staging area"). Or it changes what commit a branch head is currently pointing at. This command may alter history (by changing the commit that a branch references).

Page 30: Git Branching

Continued… Using these commands If a commit has been made somewhere in the project's history, and

you later decide that the commit is wrong and should not have been done, then git revert is the tool for the job. It will undo the changes introduced by the bad commit, recording the "undo" in the history.

If you have modified a file in your working tree, but haven't committed the change, then you can use git checkout to checkout a fresh-from-repository copy of the file.

If you have made a commit, but haven't shared it with anyone else and you decide you don't want it, then you can use git reset to rewrite the history so that it looks as though you never made that commit.

These are just some of the possible usage scenarios. There are other commands that can be useful in some situations, and the above three commands have other uses as well.