diff options
author | Junio C Hamano <gitster@pobox.com> | 2007-11-28 17:06:57 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-11-28 17:06:57 -0800 |
commit | d25430c5f88c7e7b4ce24c1b08e409f4345c4eb9 (patch) | |
tree | 88de4825ce11d7eaed4719b0b9db1d0e649f9107 /git-am.sh | |
parent | b3a4f8586b4ffa6c896cf0afb2ea49d64faf81ad (diff) | |
parent | 38762c47d6442dc0ce0f45533f9151877c485337 (diff) | |
download | git-d25430c5f88c7e7b4ce24c1b08e409f4345c4eb9.tar.gz git-d25430c5f88c7e7b4ce24c1b08e409f4345c4eb9.tar.xz |
Merge branch 'maint'
* maint:
scripts: do not get confused with HEAD in work tree
Improve description of git-branch -d and -D in man page.
Diffstat (limited to 'git-am.sh')
-rwxr-xr-x | git-am.sh | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -218,7 +218,7 @@ fi case "$resolved" in '') - files=$(git diff-index --cached --name-only HEAD) || exit + files=$(git diff-index --cached --name-only HEAD --) || exit if [ "$files" ]; then echo "Dirty index: cannot apply patches (dirty: $files)" >&2 exit 1 @@ -352,7 +352,7 @@ do case "$resolved$interactive" in tt) # This is used only for interactive view option. - git diff-index -p --cached HEAD >"$dotest/patch" + git diff-index -p --cached HEAD -- >"$dotest/patch" ;; esac esac @@ -411,7 +411,7 @@ do # trust what the user has in the index file and the # working tree. resolved= - git diff-index --quiet --cached HEAD && { + git diff-index --quiet --cached HEAD -- && { echo "No changes - did you forget to use 'git add'?" stop_here_user_resolve $this } @@ -433,7 +433,7 @@ do then # Applying the patch to an earlier tree and merging the # result may have produced the same tree as ours. - git diff-index --quiet --cached HEAD && { + git diff-index --quiet --cached HEAD -- && { echo No changes -- Patch already applied. go_next continue |