diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2009-06-14 23:52:11 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2009-06-14 23:52:11 +0200 |
commit | 58d8fcaf4184569bdda4c3c312195dfacb880d88 (patch) | |
tree | 4fd5a6eacf880e966d215f0214b8f8e07e0e45e9 /rules | |
parent | f0f82000b192bc85100dc9358dddca282f394454 (diff) | |
parent | 109ced1ce651d57ee802f23ca7d9985286823134 (diff) |
Merge branch 'master' of flubber:~hurd-web/hurd-web
Diffstat (limited to 'rules')
-rw-r--r-- | rules/source_repositories.mdwn | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/rules/source_repositories.mdwn b/rules/source_repositories.mdwn index 2c2092f8..6240b422 100644 --- a/rules/source_repositories.mdwn +++ b/rules/source_repositories.mdwn @@ -51,6 +51,20 @@ Examples: * `master-viengoos-on-bare-metal` -- port to Viengoos running on bare metal; branched off of `master-viengoos` at some point + * unionfs + + * `master` -- the mainline branch + * `master-unionmount` -- develop `unionmount` based on `unionfs`' master + branch + +To give a concrete example, the latter one was created like this: + + $ git clone --no-checkout ssh://git.savannah.gnu.org/srv/git/hurd/unionfs.git + $ cd unionfs/ + $ git checkout -b master-unionmount origin/master + $ ... + $ git push master-unionmount + ## Merging Merging between Git branches is trivial, at least as long as no conflicts |