Skip to content

Commit 5313714

Browse files
committed
[FIX] replace a few more references to trunk with master
1 parent 24d594a commit 5313714

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/git.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,14 +70,14 @@ Basic development workflow
7070
* update your remotes with ``git fetch --all``
7171
* create your development branch with ``git checkout -b <branch_name>
7272
<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``
7474
* do your changes, stage them with ``git add`` and commit them with ``git
7575
commit``
7676
* if your branch is long-lived, you may want to update it to its parent
7777

7878
- update the remotes with ``git fetch --all``
7979
- merge the remote branch into the local one with ``git merge --no-ff
80-
odoo/trunk``
80+
odoo/master``
8181

8282
* to push the branch to the development repository, use ``git push -u dev
8383
<branchname>``, this will automatically create a branch called

0 commit comments

Comments
 (0)