diff options
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | 2007-08-31 20:06:27 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-08-31 23:22:51 -0700 |
commit | f95eef15f2f8a336b9a42749f5458c841a5a5d63 (patch) | |
tree | 623a5f9e4d1f99d4056b51e4b68e77e4641bcdef /t/t8003-blame.sh | |
parent | filter-branch: provide the convenience functions also for commit filters (diff) | |
download | tgif-f95eef15f2f8a336b9a42749f5458c841a5a5d63.tar.xz |
filter-branch: introduce convenience function "skip_commit"
With this function, a commit filter can leave out unwanted commits
(such as temporary commits). It does _not_ undo the changeset
corresponding to that commit, but it _skips_ the revision. IOW
no tree object is changed by this.
If you like to commit early and often, but want to filter out all
intermediate commits, marked by "@@@" in the commit message, you can
now do this with
git filter-branch --commit-filter '
if git cat-file commit $GIT_COMMIT | grep '@@@' > /dev/null;
then
skip_commit "$@";
else
git commit-tree "$@";
fi' newbranch
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t8003-blame.sh')
0 files changed, 0 insertions, 0 deletions