File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -70,14 +70,14 @@ Basic development workflow
70
70
* update your remotes with ``git fetch --all ``
71
71
* create your development branch with ``git checkout -b <branch_name>
72
72
<source_branch> ``. For instance if you wanted to add support for full-text
73
- search in trunk you could use ``git checkout -b trunk -fts-xxx odoo/master ``
73
+ search in master you could use ``git checkout -b master -fts-xxx odoo/master ``
74
74
* do your changes, stage them with ``git add `` and commit them with ``git
75
75
commit ``
76
76
* if your branch is long-lived, you may want to update it to its parent
77
77
78
78
- update the remotes with ``git fetch --all ``
79
79
- merge the remote branch into the local one with ``git merge --no-ff
80
- odoo/trunk ``
80
+ odoo/master ``
81
81
82
82
* to push the branch to the development repository, use ``git push -u dev
83
83
<branchname> ``, this will automatically create a branch called
You can’t perform that action at this time.
0 commit comments