-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rather than copying and pasting, which is prone to lead to fixes missing in one version, move the fake-editor generator to t/t3404/. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
- Loading branch information
Johannes Schindelin
authored and
Junio C Hamano
committed
Jan 29, 2009
1 parent
8712b3c
commit 29a0334
Showing
3 changed files
with
44 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
#!/bin/sh | ||
|
||
set_fake_editor () { | ||
echo "#!$SHELL_PATH" >fake-editor.sh | ||
cat >> fake-editor.sh <<\EOF | ||
case "$1" in | ||
*/COMMIT_EDITMSG) | ||
test -z "$FAKE_COMMIT_MESSAGE" || echo "$FAKE_COMMIT_MESSAGE" > "$1" | ||
test -z "$FAKE_COMMIT_AMEND" || echo "$FAKE_COMMIT_AMEND" >> "$1" | ||
exit | ||
;; | ||
esac | ||
test -z "$EXPECT_COUNT" || | ||
test "$EXPECT_COUNT" = $(sed -e '/^#/d' -e '/^$/d' < "$1" | wc -l) || | ||
exit | ||
test -z "$FAKE_LINES" && exit | ||
grep -v '^#' < "$1" > "$1".tmp | ||
rm -f "$1" | ||
cat "$1".tmp | ||
action=pick | ||
for line in $FAKE_LINES; do | ||
case $line in | ||
squash|edit) | ||
action="$line";; | ||
*) | ||
echo sed -n "${line}s/^pick/$action/p" | ||
sed -n "${line}p" < "$1".tmp | ||
sed -n "${line}s/^pick/$action/p" < "$1".tmp >> "$1" | ||
action=pick;; | ||
esac | ||
done | ||
EOF | ||
|
||
test_set_editor "$(pwd)/fake-editor.sh" | ||
chmod a+x fake-editor.sh | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters