diff options
author | David Reiss <dreiss@dreiss-vmware.(none)> | 2007-11-13 13:47:26 -0800 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2007-11-17 13:39:47 -0800 |
commit | 826a93398df54d4f3874f8851da29878c14b1a88 (patch) | |
tree | 374e2d9efa49f653bdd5037e6e48d3c9d04c0a81 /git-svn.perl | |
parent | 111947ef8cd3071faadb527c20047efd4330138a (diff) | |
download | git-826a93398df54d4f3874f8851da29878c14b1a88.tar.gz |
git-svn: Fix a typo and add a comma in an error message in git-svn
Signed-off-by: David Reiss <dreiss@facebook.com>
Acked-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 0ecf7a5923..5b1deeab94 100755 --- a/git-svn.perl +++ b/git-svn.perl @@ -391,7 +391,7 @@ sub cmd_set_tree { sub cmd_dcommit { my $head = shift; git_cmd_try { command_oneline(qw/diff-index --quiet HEAD/) } - 'Cannot dcommit with a dirty index. Commit your changes first' + 'Cannot dcommit with a dirty index. Commit your changes first, ' . "or stash them with `git stash'.\n"; $head ||= 'HEAD'; my @refs; |