diff options
| author | Junio C Hamano <junkio@cox.net> | 2006-07-17 01:08:11 -0700 |
|---|---|---|
| committer | Junio C Hamano <junkio@cox.net> | 2006-07-17 01:08:11 -0700 |
| commit | b9718d41c7e9c171e432bafac97a33be36f0e2bf (patch) | |
| tree | 22f2ceb1019de1fa335e4f31f5fa61f84b231f13 /git-quiltimport.sh | |
| parent | git-svn: don't check for migrations/upgrades on commit-diff (diff) | |
| parent | Record rebase changes as 'rebase' in the reflog. (diff) | |
| download | git-1.4.2-rc1.tar.gz git-1.4.2-rc1.zip | |
Merge branch 'sp/reflog'v1.4.2-rc1
* sp/reflog:
Record rebase changes as 'rebase' in the reflog.
Log ref changes made by resolve.
Log ref changes made by quiltimport.
Log ref changes made by git-merge and git-pull.
Diffstat (limited to 'git-quiltimport.sh')
| -rwxr-xr-x | git-quiltimport.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-quiltimport.sh b/git-quiltimport.sh index 364baff806..10135da3ac 100755 --- a/git-quiltimport.sh +++ b/git-quiltimport.sh @@ -112,7 +112,7 @@ for patch_name in $(cat "$QUILT_PATCHES/series" | grep -v '^#'); do git-apply --index -C1 "$tmp_patch" && tree=$(git-write-tree) && commit=$((echo "$SUBJECT"; echo; cat "$tmp_msg") | git-commit-tree $tree -p $commit) && - git-update-ref HEAD $commit || exit 4 + git-update-ref -m "quiltimport: $patch_name" HEAD $commit || exit 4 fi done rm -rf $tmp_dir || exit 5 |
