I've created a new stable branch for v2.13. The name of the branch is
stable/v2.13
It's maintenance branch and it's base for the next stable release
2.13.1. The real development will be continue in the master branch.
HOWTO:
The branch is automatically cloned by:
git clone git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git
or fetched by git-pull (in case you already have a local repository).
Don't forget that all remote branches are in the "origin/"
namespace (you have to use "git branch -a" (or -r)):
$ git branch -a
* master
origin/HEAD
origin/master
origin/stable/v2.13
It's really bad idea to work directly in the origin/ namespace. You
need a local stable branch and map (track) the branch to the remote
stable branch:
$ git branch --track stable-v2.13 origin/stable/v2.13
now you have:
$ git branch
* master
stable-v2.13
and the stable-v2.13 branch is your sandbox and it will be
automatically updated by git-pull.
Karel
--
Karel Zak <[EMAIL PROTECTED]>
-
To unsubscribe from this list: send the line "unsubscribe util-linux-ng" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html