Skip to content

Commit

Permalink
[FIX] replace a few more references to trunk with master
Browse files Browse the repository at this point in the history
  • Loading branch information
xmo-odoo committed May 19, 2014
1 parent 24d594a commit 5313714
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/git.rst
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,14 @@ Basic development workflow
* update your remotes with ``git fetch --all``
* create your development branch with ``git checkout -b <branch_name>
<source_branch>``. For instance if you wanted to add support for full-text
search in trunk you could use ``git checkout -b trunk-fts-xxx odoo/master``
search in master you could use ``git checkout -b master-fts-xxx odoo/master``
* do your changes, stage them with ``git add`` and commit them with ``git
commit``
* if your branch is long-lived, you may want to update it to its parent

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

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

0 comments on commit 5313714

Please sign in to comment.