Differences

This shows you the differences between two versions of the page.

Link to this comparison view

dev:core:git [2014/11/07 13:33]
mistic100
— (current)
Line 1: Line 1:
-<WRAP round tip> 
-This is a work in progress, all concepts exposed here are susceptible to change. 
-</WRAP> 
  
-====== Git workflow and best pratices ====== 
- 
-===== Reminder ===== 
- 
-On Piwigo we typically have two active branches: 
-  * ''trunk'' holds the main source code with features for the next major version 
-  * ''2.7'' (in instance) holds the source code of the current major version, only bug fixes and minor features are pushed to this branch 
- 
-As the SVN concept of branches is very loose we used to develop either on ''master'' or ''2.7'' and then merge specific commits to the other branch if needed. This concept is totally applicable in Git, it's called **cherry pick**. 
- 
-**But this is not how Git is supposed to work.** Git tends to track every changes, and links them to others, and because **cherry pick** basically forge a new commit from another one, a part of the history is lost. 
- 
-===== Workflow ===== 
- 
-The workflow we follow is the one described by Vincent Driessen in his excellent article [[http://nvie.com/posts/a-successful-git-branching-model|A successful Git branching model]]. 
- 
-{{http://nvie.com/img/git-model@2x.png?575}} 
- 
-**Don't worry** it's actually very simple. There are five types of branches. 
-===''master''== 
-Contains the latest **stable** version of the source code. Production tags are created on this branch. **Never commit on this branch.** 
- 
-===''develop''== 
-Contains the latest **development** code. It's like the ''trunk'' on Subversion. **It is advised to only make small commits on this branch**, prefer using a ''bug-'' or ''feature-'' branch. 
- 
-=== Release branches (''2.7'' for instance) === 
-Contain the code of a specific major version and all its minor versions. It is initiated by a single commit making necessary changes (version change, production config, etc.). Like ''develop'' **it's advised to only make small commits on this branch**. 
- 
-Remember that we NEVER make database changes in minor releases, neither we add translatable strings. 
- 
-When a new version is released, the branch **must** be merged in ''master'' and a tag created (on master). 
- 
-===''bug-''=== 
-Are used to... fix bugs. Create one bug branch by bug. It should be named after a specific issue number (eg: ''bug-1324''). 
- 
-Once the fix is ready it **must** be merged in ''develop'' and generally the current release branch.\\ 
-You notice that, unlike Vincent Dressen, we don't merge bug fixes in ''master'' but in the current branch, which is then merged back into ''master'' when ready. 
- 
-Don't forget to delete the branch locally and remotely when finished. 
- 
-===''feature-''=== 
-Almost the same as ''bug-'' but for new features. It can be named after a specific issue number, or an arbitrary name for unlisted features. 
- 
-Once the feature is ready it **must** be merge in ''develop'' and in the current release branch **only** if it's a minor feature. 
- 
-Don't forget to delete the branch locally and remotely when finished. 
- 
- 
-===== Best practices ===== 
- 
-These are some random advices you **should** really apply in order to have a clean Git history. 
- 
-==== No fast-forward ==== 
-When merging a branch into another, the default behavior of Git is to fast-forward it, that means if no changes has been made on the target branch, the source branch will simply disappear from the tree, making it difficult to localize merging point. 
- 
-By adding the ''--no-ff'' option to ''git merge'' you will force Git to create an empty technical commit when merging. 
- 
-{{http://nvie.com/img/merge-without-ff@2x.png?478}} 
- 
-This is of course not always required, it's up to you to evaluate if a specific set of commits belongs to a separated branch, but don't forget than the branch will still be visible if someone else committed in the mean time. 
- 
-==== Rebase when pulling ==== 
-Say you commit on branch A, and Bob also committed on branch A, and he pushed the branch to the central server. Then you want tu push your commit: Git will refuse to it, he will ask you to pull the remote branch. Ok so you do a ''git pull''. If you are lucky there won't be any merge conflict and you will e able to push. 
- 
-But this will create a one-shot branch, and a new commit "Merge branch 'master' on 'master'". And this is a complete mess! 
- 
-{{http://gitready.com/images/pull4.png}} 
-(from [[http://gitready.com/advanced/2009/02/11/pull-with-rebase.html|gitready.com]]) 
- 
-The fact is ''pull'' is a shorthand for ''fetch & merge''. But you don't want a merge, you want to apply your modifications after the ones of Bob. 
- 
-The solution is to use the ''--rebase'' switch, which will try to reapply your commits at the end of the tree. 
- 
-Say we are working on the branch 2.7, the command is: 
-''git pull --rebase origin 2.7'' 
- 
-{{http://gitready.com/images/pull3.png}} 
- 
-And that's it! Much cleaner. 
- 
-Of course you may have conflicts during the rebase and have to manually solve them, like a normal merge. 
- 
-==== Atomistic commits ==== 
-A golden rule is "commit often, push once". That mean you should make very small commits, assigning a very single issue, and push everything when you are really sure it's ready. 
- 
-You can even pause your work on a branch, go to another one, commit a bit more, return to the first one, finish your work, and finally push everything. 
- 
-Don't forget some very handy tools of git to help you to craft "perfect" commits: 
-  * ''stash'' to store your current modifications and clean your working copy 
-  * ''add -p'' to stage only some parts of a file 
-  * ''squash'' to regroup sequential commits into one 
-  * ''commit --ammend'' to modify your latest commit 
- 
-(You must not abuse of these last two, only use them for correcting typos, and this kind of things;) 
- 
-All this "rewriting history" can be done when you work locally, once you pushed everything on Github, it's too late. Hence the "push once". 
 
Back to top
dev/core/git.1415367236.txt.gz · Last modified: 2014/11/07 13:33 by mistic100
 
 
github twitter newsletter Donate Piwigo.org © 2002-2024 · Contact