diff options
author | Eric Wong <normalperson@yhbt.net> | 2007-01-07 19:35:40 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-01-07 21:32:49 -0800 |
commit | ae41098714898acd52dba291e476a2fedbd2eae2 (patch) | |
tree | 48aa4f9a2c5c4742987533ef352ec2b1ee280190 /Documentation/git-svn.txt | |
parent | 59b5f52047dcc1c55122c0f3c475b4d8efa45163 (diff) | |
download | git-ae41098714898acd52dba291e476a2fedbd2eae2.tar.gz |
git-svn: add --prefix= option to multi-init
Also, document --{trunk,branches,tags} options while we're
documenting multi-init options.
Signed-off-by: Eric Wong <normalperson@yhbt.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation/git-svn.txt')
-rw-r--r-- | Documentation/git-svn.txt | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Documentation/git-svn.txt b/Documentation/git-svn.txt index ce63defffd..8df43cb819 100644 --- a/Documentation/git-svn.txt +++ b/Documentation/git-svn.txt @@ -139,6 +139,24 @@ manually joining branches on commit. where the repository URL ends and where the repository path begins. +-T<trunk_subdir>:: +--trunk=<trunk_subdir>:: +-t<tags_subdir>:: +--tags=<tags_subdir>:: +-b<branches_subdir>:: +--branches=<branches_subdir>:: + These are the command-line options for multi-init. Each of + these flags can point to a relative repository path + (--tags=project/tags') or a full url + (--tags=https://foo.org/project/tags) + +--prefix=<prefix> + This allows one to specify a prefix which is prepended to the + names of remotes. The prefix does not automatically include a + trailing slash, so be sure you include one in the argument if + that is what you want. This is useful if you wish to track + multiple projects that share a common repository. + 'multi-fetch':: This runs fetch on all known SVN branches we're tracking. This will NOT discover new branches (unlike git-svnimport), so |