...
This is our default workflow. The central concept of this workflow is that all development occurs in isolated "topic" branches. The "master" branch is kept clean allowing easy branching to address separate features (topics) and bug fixes. Another key feature of this flow is the use of rebases instead of merges to prevent local merge commits.
- Update "master" “master” branch.
Code Block > git pull upstream master
- Create a new feature-branch "feature1" “feature1”
Code Block > git branch feature1 master > git checkout feature1
- Do some work on your feature, add and commit it
Code Block > git add File1, File2 > git commit -m "Working my feature"
- OPTIONAL: When you're you’re ready to push up, squash all of your commits together first
Code Block > git reset --soft master > git commit -m "unified feature commit"
- When you're you’re ready to push your work up to get pulled in, make sure you're you’re up-to-date first
Code Block > git checkout master > git pull upstream master
- "master" “master” is now up-to-date. Switch back to your branch and rebase your work on top of the new "master" “master”
Code Block > git checkout feature1 > git rebase master
- Push up to github
Code Block > git push origin feature1
- Issue pull request
- When processed, update "master" “master” to pull down your official change, delete "feature1" “feature1”
Code Block > git checkout master > git pull upstream > git branch -D feature1
...
When you rebase your feature on-top of new stuff in your "master"“master”, you may have to handle file merges. Please note that step 4, squashing all of your work into a single commit is encouraged, otherwise you may end-up processing merges on the same file for every commit you're you’re rebasing.
How do you know you're you’re conflicted? Look for the big "CONFLICT" “CONFLICT” in the results when you issue the rebase
...
You can either use your IDE to handle the conflicts or if you've you’ve setup the git merge-tool (http://gitguru.com/2009/02/22/integrating-git-with-a-visual-merge-tool/), issue the following from the command-line
...
Code Block |
---|
git rebase --continue |
If you've you’ve made a mistake and just want to cancel out of the rebase, issue the following command:
...
When developing a fix or feature across multiple branches, you often cannot just merge one branch onto another. Think of a fix that needs to be applied to versions 1.0, 2.0 and 2.2. Merging would bring in more than your one fix. In this scenario cherry-picking is the answer. Basically it's it’s capturing a patch-file of one commit and applying it to another branch to create a new commit.
Steps to Cherry-pick
Identify the SHA(s) code for the commit you want to pick-over to another branch. git log or your IDE's IDE’s history will work fine.
Code Block |
---|
git checkout TARGET_BRANCH git cherry-pick 724d9acd 3d4fcf9e |
Just like merging or rebasing, you may have to handle a merge. If so, run git mergetool and then git cherry-pick --continue
When cherry-picking, it can be useful to ignore newline differences. This can be done with:
Code Block |
---|
git cherry-pick --strategy=recursive -X ignore-space-at-eol 3d4fcf9e
|
Other merge strategies supported by git-merge should work as well
Resetting
The reset command does a lot of diferent things. The most basic form is as follows. It will replace the file in your working directory with the last committed version in the repository HEAD.
...
The second use of reset actually moves the branch to point to another commit. This is often a commit further back in the branch, but can be any commit from any branch, remote or even an orphaned commit in the reflog. You'll You’ll notice we don't don’t specify a file, that's because we're that’s because we’re resetting the branch!
Code Block |
---|
git reset --STYLE COMMIT_SHA_OR_NAME |
The style of reset you apply makes a huge difference in the result.
--soft
Does not touch the index file nor the working tree at all (but resets the head to <commit>)
(This is great for "squashing" “squashing” several commits together as they're they’re changes are on disk and they're they’re in the staging area (index) ready to be committed.)
--mixed
Resets the index but not the working tree (i.e., the changed files are preserved but not marked for commit) and reports what has not been updated. This is the default action.
(This is useful when you're you’re accidentally added too much to the staging area and just want to reset it)
...
--merge and --keep
These are inbetween a --hard and --soft. I don't don’t use them much, but you can read about them here (https://www.kernel.org/pub/software/scm/git/docs/git-reset.html)
...
Stash is pretty intuitive. It puts your changes somewhere, making it look like you've done nothing (reset to HEAD), allow . Later you to pull them back laterfrom the stash. What you may not know if is that you can name your stashes with the following "save" sub-command (note: save is the default subcommandsub-command)
Code Block |
---|
git stash save "My Message Here" |
...
Most people just the pop command to apply a stash and remove it, but you can simply apply a stash's changes to a branch and keep it around in the list without removing it as pop does. Use this if you want to apply it a stash to multiple branches (cheap cherry-pick / reset)
...
Code Block |
---|
git branch myRestoredBranch 724d9acd
|
Exercises
Rebase Merge conflicts
Create a repo:
Code Block |
---|
mkdir pristine && cd pristine
git init
|
Create a new file “test.txt” with the following content:
“the brown dog jumped over the lazy fox”
Code Block |
---|
git add test.txt
git commit -m "initial commit"
|
Do some work on a feature branch
Code Block |
---|
git checkout -b feature
|
edit the test.txt and make the content:
“the purple dog jumped over the lazy fox”
Code Block |
---|
git add test.txt
git commit -m "brown is out of style"
|
Simulate someone else doing work but making a conflicting commit on master
Code Block |
---|
git checkout master
|
edit the test.txt to make the content:
“the brown dog jumped over the lazy turtle”
Code Block |
---|
git add test.txt
git commit -m "brown is out of style"
|
Now back to your feature, rebase on top of master and you’ll have a Merge!
Code Block |
---|
git checkout feature
git rebase master
|
Handle the merge
Code Block |
---|
git mergetool test.txt
git rebase --continue
|