diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2008-09-30 14:14:09 -0700 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2008-09-30 14:14:09 -0700 |
commit | 8b745e3ffdabe6ef110dc064af46b0ba993941e0 (patch) | |
tree | 2f69364c76e4dc0b7cf265ccf93273734b9ccd74 /git-svn.perl | |
parent | 416f80a60b209d2ca0326407b801e9fb6ed8fdd7 (diff) | |
parent | 0a1a1c8615ec0049d2d7fcd849cfddd978170752 (diff) | |
download | git-8b745e3ffdabe6ef110dc064af46b0ba993941e0.tar.gz |
Merge branch 'maint'
* maint:
git-svn: call 'fatal' correctly in set-tree
Replace svn.foo.org with svn.example.com in git-svn docs (RFC 2606)
t0024: add executable permission
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 80a5728371..7609a83741 100755 --- a/git-svn.perl +++ b/git-svn.perl @@ -2591,7 +2591,7 @@ sub set_tree { my ($self, $tree) = (shift, shift); my $log_entry = ::get_commit_entry($tree); unless ($self->{last_rev}) { - fatal("Must have an existing revision to commit"); + ::fatal("Must have an existing revision to commit"); } my %ed_opts = ( r => $self->{last_rev}, log => $log_entry->{log}, |