summaryrefslogtreecommitdiff
path: root/git-svn.perl
diff options
context:
space:
mode:
authorDavid Reiss <dreiss@dreiss-vmware.(none)>2007-11-13 21:47:26 (GMT)
committerEric Wong <normalperson@yhbt.net>2007-11-17 21:39:47 (GMT)
commit826a93398df54d4f3874f8851da29878c14b1a88 (patch)
tree374e2d9efa49f653bdd5037e6e48d3c9d04c0a81 /git-svn.perl
parent111947ef8cd3071faadb527c20047efd4330138a (diff)
downloadgit-826a93398df54d4f3874f8851da29878c14b1a88.zip
git-826a93398df54d4f3874f8851da29878c14b1a88.tar.gz
git-826a93398df54d4f3874f8851da29878c14b1a88.tar.bz2
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-xgit-svn.perl2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-svn.perl b/git-svn.perl
index 0ecf7a5..5b1deea 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;