author | Jeff King <peff@peff.net> | |
Sun, 18 Apr 2010 12:01:45 +0000 (08:01 -0400) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Sun, 18 Apr 2010 18:41:53 +0000 (11:41 -0700) | ||
commit | 77bc694907bdf517407cc6f79da8adf9a4879cea | |
tree | 12ecf017133b1f6975a325a7a372be25070601ad | tree | snapshot |
parent | f3bd6ab7ea7b35ca5f26f106eb00a00f257716d7 | commit | diff |
rebase-interactive: silence warning when no commits rewritten
If you do a "rebase -i" and don't change any commits,
nothing is rewritten, and we have no REWRITTEN_LIST. The
shell prints out an ugly message:
$ GIT_EDITOR=true git rebase -i HEAD^
/path/to/git-rebase--interactive: 1: cannot open
/path/to/repo/.git/rebase-merge/rewritten-list: No such file
Successfully rebased and updated refs/heads/master.
We can fix it by not running "notes copy" at all if nothing
was rewritten.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
If you do a "rebase -i" and don't change any commits,
nothing is rewritten, and we have no REWRITTEN_LIST. The
shell prints out an ugly message:
$ GIT_EDITOR=true git rebase -i HEAD^
/path/to/git-rebase--interactive: 1: cannot open
/path/to/repo/.git/rebase-merge/rewritten-list: No such file
Successfully rebased and updated refs/heads/master.
We can fix it by not running "notes copy" at all if nothing
was rewritten.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-rebase--interactive.sh | diff | blob | history |