diff options
author | Junio C Hamano <junkio@cox.net> | 2006-04-28 16:57:32 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-04-28 16:57:32 -0700 |
commit | 89719209f48fe7d9694710795b1ec1d5fd7ebfc0 (patch) | |
tree | 4c264196192c6aa0b3a60d337f43ec082add3293 /git-am.sh | |
parent | Merge branch 'fix' (diff) | |
parent | Fix trivial typo in git-log man page. (diff) | |
download | tgif-89719209f48fe7d9694710795b1ec1d5fd7ebfc0.tar.xz |
Merge branch 'fix'
* fix:
Fix trivial typo in git-log man page.
Properly render asciidoc "callouts" in git man pages.
Fix up remaining man pages that use asciidoc "callouts".
Update the git-branch man page to include the "-r" option,
annotate: display usage information if no filename was given
annotate: fix warning about uninitialized scalar
git-am --resolved: more usable error message.
Diffstat (limited to 'git-am.sh')
-rwxr-xr-x | git-am.sh | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -376,6 +376,13 @@ do echo "No changes - did you forget update-index?" stop_here $this fi + unmerged=$(git-ls-files -u) + if test -n "$unmerged" + then + echo "You still have unmerged paths in your index" + echo "did you forget update-index?" + stop_here $this + fi apply_status=0 ;; esac |