diff options
author | Eric Wong <normalperson@yhbt.net> | 2007-02-03 12:49:48 -0800 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2007-02-23 00:57:11 -0800 |
commit | 9fa00b655cfd67bf344668a0d913f90ec9a8141d (patch) | |
tree | eab7904de4d5852cd8ebdd5c36954423dd4b432f /git-svn.perl | |
parent | 502c1bf629154b4a248105b10346a06a6ff07387 (diff) | |
download | git-9fa00b655cfd67bf344668a0d913f90ec9a8141d.tar.gz git-9fa00b655cfd67bf344668a0d913f90ec9a8141d.tar.xz |
git-svn: just name the default svn-remote "svn" instead of "git-svn"
It can be confusing and redundant, since historically the
default remote ref (not remote itself) has been "git-svn", too.
Signed-off-by: Eric Wong <normalperson@yhbt.net>
Diffstat (limited to 'git-svn.perl')
-rwxr-xr-x | git-svn.perl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-svn.perl b/git-svn.perl index 8c24012e7..66b4c20fd 100755 --- a/git-svn.perl +++ b/git-svn.perl @@ -10,7 +10,7 @@ $AUTHOR = 'Eric Wong <normalperson@yhbt.net>'; $VERSION = '@@GIT_VERSION@@'; $ENV{GIT_DIR} ||= '.git'; -$Git::SVN::default_repo_id = 'git-svn'; +$Git::SVN::default_repo_id = 'svn'; $Git::SVN::default_ref_id = $ENV{GIT_SVN_ID} || 'git-svn'; $Git::SVN::Log::TZ = $ENV{TZ}; |