git-for-lieutenants
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
git-for-lieutenants [2013/01/09 12:04] – milan | git-for-lieutenants [2017/11/01 09:23] (current) – bp | ||
---|---|---|---|
Line 2: | Line 2: | ||
:!: Remember: As Lieutenant you are responsible for the project, so you have to make sure, that the contributed work meets all requirements: | :!: Remember: As Lieutenant you are responsible for the project, so you have to make sure, that the contributed work meets all requirements: | ||
- | * [[coding-conventions|oofem coding conventions]] have been followed, | + | * [[coding-conventions|oofem coding conventions]] have been followed |
+ | * [[coding-conventions# | ||
* sufficient documentation and internal tests provided | * sufficient documentation and internal tests provided | ||
- | ====== | + | ====== |
- | Lieutenants should use SSH protocol | + | Reviews allow leutnants and other collaborators |
- | To grant ssh access, you have to send your public ssh key(s) (see http:// | + | |
- | Lieutenants clone oofem repository using ssh protocol: | + | * [[https:// |
- | git clone git@www.oofem.org:/data/git/oofem.git | + | * [[https:// |
- | ====== Reference repository ====== | ||
- | On the reference repository, two main branches exist: | ||
- | * '' | ||
- | * '' | ||
- | Individual developers typically clone the main repository, create a topic branch, derived from '' | ||
- | |||
- | The sequence looks basically like this: | ||
- | |||
- | # clone reference repo | ||
- | $ git clone http:// | ||
- | # Note: when a repository is cloned, git automatically creates a master branch that tracks origin/ | ||
- | $ cd oofem.git | ||
- | # create a new brach for a new development | ||
- | $ git checkout -b featureA | ||
- | $ (work) | ||
- | $ git commit | ||
- | $ (work) | ||
- | $ git commit | ||
- | |||
- | Now you have your commits that you want to send to the maintainers. | ||
- | **It is strongly recommended to use rebase -i to squash your work down to a single commit, or rearrange the work in the commits to make the patch easier for the maintainer to review — see Git book for more information about interactive rebasing.** | ||
- | |||
- | The user use git format-patch to generate the mbox-formatted files. | ||
- | ====== Applying Patches from E-mail ====== | ||
- | If you receive a patch over e-mail that you need to integrate into your project, you need to apply the patch in your topic branch to evaluate it. Please see detailed description of this topic in [[http:// | ||
- | |||
- | The Lieutenants of the Git project tends to namespace these branches as well — such as c_name/ | ||
- | |||
- | #create a feature branch | ||
- | $ git branch c_name/ | ||
- | # and to switch into this branch | ||
- | $ git checkout c_name/ | ||
- | | ||
- | Or, if you want to also switch to it immediately, | ||
- | $ git checkout -b c_name/ | ||
- | |||
- | Now you’re ready to add contributed work into this topic branch and determine if you want to merge it into reference longer-term develop branch. | ||
- | |||
- | To apply a patch generated by format-patch, | ||
- | |||
- | $ git am 0001-limit-log-function.patch | ||
- | | ||
- | |||
- | |||
- | You can see that it applied cleanly and automatically created the new commit for you. The author information is taken from the e-mail’s From and Date headers, and the message of the commit is taken from the Subject and body (before the patch) of the e-mail. | ||
- | |||
- | It is possible that the patch won’t apply cleanly. Perhaps your main branch has diverged too far from the branch the patch was built from, or the patch depends on another patch you haven’t applied yet. In that case, the git am process will fail and ask you what you want to do: | ||
- | |||
- | $ git am 0001-seeing-if-this-helps-the-gem.patch | ||
- | | ||
- | | ||
- | | ||
- | Patch failed at 0001. | ||
- | When you have resolved this problem run "git am --resolved" | ||
- | If you would prefer to skip this patch, instead run "git am --skip" | ||
- | To restore the original branch and stop patching run "git am --abort" | ||
- | |||
- | This command puts conflict markers in any files it has issues with, much like a conflicted merge or rebase operation. You solve this issue much the same way — edit the file to resolve the conflict, stage the new file, and then run git am --resolved to continue to the next patch: | ||
- | |||
- | $ (fix the file) | ||
- | $ git add ticgit.gemspec | ||
- | $ git am --resolved | ||
- | | ||
- | |||
- | If you want Git to try a bit more intelligently to resolve the conflict, you can pass a -3 option to it, which makes Git attempt a three-way merge. This option isn’t on by default because it doesn’t work if the commit the patch says it was based on isn’t in your repository. If you do have that commit — if the patch was based on a public commit — then the -3 option is generally much smarter about applying a conflicting patch: | ||
- | |||
- | $ git am -3 0001-seeing-if-this-helps-the-gem.patch | ||
- | Applying: seeing if this helps the gem | ||
- | error: patch failed: ticgit.gemspec: | ||
- | error: ticgit.gemspec: | ||
- | Using index info to reconstruct a base tree... | ||
- | Falling back to patching base and 3-way merge... | ||
- | No changes -- Patch already applied. | ||
- | |||
- | In this case, I was trying to apply a patch I had already applied. Without the -3 option, it looks like a conflict. | ||
- | |||
- | When all the patches for your topic are applied and committed into your branch, you can choose whether and how to integrate them into a develop reference branch. | ||
- | |||
- | For example, once you merged all patches to a '' | ||
- | |||
- | $ git push origin master | ||
- | |||
- | |||
- | ====== Merging workflow ====== | ||
- | In oofem project, we have two long-running branches, master and stable. '' | ||
git-for-lieutenants.1357729492.txt.gz · Last modified: 2013/01/09 12:04 by milan