Repository : ssh://git@open-mesh.org/doc
On branches: backup-redmine/2017-07-13,master
commit 50dd4984433beb2ae6793c64d91ad5ba3f4874d0 Author: Sven Eckelmann sven@narfation.org Date: Fri Aug 20 22:15:59 2010 +0000
doc: open-mesh/UsingBatmanGit
50dd4984433beb2ae6793c64d91ad5ba3f4874d0 open-mesh/UsingBatmanGit.textile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+)
diff --git a/open-mesh/UsingBatmanGit.textile b/open-mesh/UsingBatmanGit.textile index d35a18b0..a5eff71e 100644 --- a/open-mesh/UsingBatmanGit.textile +++ b/open-mesh/UsingBatmanGit.textile @@ -58,6 +58,24 @@ git checkout next git cherry-pick $SHA1 }}}
+'''maint branch''' + +The maint is a branch only maintained in git to gather bug fixes and only bugfixes for the last release which were usually picked from next. + +Create branch associated with the remote-tracking branch after cloning the repository +}}} + +{{{ +git checkout -b maint --track origin/maint +}}} + +Cherry-picking a commit from next branch + +{{{ +git checkout maint +git cherry-pick $SHA1 +}}} + {{{ #!div style="width: 40em; text-align: justify"