summaryrefslogtreecommitdiffstats
path: root/t/t4117-apply-reject.sh (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Rewrite "git-frotz" to "git frotz"Junio C Hamano2007-07-031-1/+1
| | | | | | This uses the remove-dashes target to replace "git-frotz" to "git frotz". Signed-off-by: Junio C Hamano <gitster@pobox.com>
* Get rid of the dependency to GNU diff in the testsJohannes Schindelin2007-03-041-6/+6
| | | | | | | | | | | | | | | Now that "git diff" handles stdin and relative paths outside the working tree correctly, we can convert all instances of "diff -u" to "git diff". This commit is really the result of $ perl -pi.bak -e 's/diff -u/git diff/' $(git grep -l "diff -u" t/) Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <junkio@cox.net> (cherry picked from commit c699a40d68215c7e44a5b26117a35c8a56fbd387)
* git-apply --verboseJunio C Hamano2006-08-181-0/+48
| | | | Signed-off-by: Junio C Hamano <junkio@cox.net>
* git-apply --reject: send rejects to .rej files.Junio C Hamano2006-08-181-17/+30
| | | | | | | ... just like everybody else does, instead of sending it to the standard output, which was just silly. Signed-off-by: Junio C Hamano <junkio@cox.net>
* git-apply --rejectJunio C Hamano2006-08-171-0/+96
With the new flag "--reject", hunks that do not apply are sent to the standard output, and the usable hunks are applied. The command itself exits with non-zero status when this happens, so that the user or wrapper can take notice and sort the remaining mess out. Signed-off-by: Junio C Hamano <junkio@cox.net>