* git-filter-branch behavior
@ 2008-08-13 16:14 David Neu
2008-08-13 20:41 ` Jonathan Nieder
0 siblings, 1 reply; 4+ messages in thread
From: David Neu @ 2008-08-13 16:14 UTC (permalink / raw)
To: git
All,
Running
git-filter-branch --tree-filter 'rm -rf subdir/' -- --all
as shown below seems to leave empty commits
corresponding to subdir/ in the tree. Is this the expected
behavior? If so is there a command to remove the empty
commits? Using git-rebase -i to edit the commit history
works, but is a bit tedious on a large tree.
Many thanks!
Cheers,
David
***** ***** ***** ***** *****
mkdir test-filter-branch
cd test-filter-branch
echo 'base1' > base.txt
mkdir subdir
echo 'sub1' > subdir/sub.txt
git-init
git-add .
git-commit -a -m "Commit 1"
echo 'base2' >> base.txt
git-commit -a -m "Commit 2"
echo 'sub3' > subdir/sub.txt
git-commit -a -m "Commit 3"
echo 'base4' >> base.txt
echo 'sub4' > subdir/sub.txt
git-commit -a -m "Commit 4"
git-filter-branch --tree-filter 'rm -rf subdir/' -- --all
gitk &
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: git-filter-branch behavior
2008-08-13 16:14 git-filter-branch behavior David Neu
@ 2008-08-13 20:41 ` Jonathan Nieder
2008-08-13 21:00 ` Jonathan Nieder
2008-08-15 15:32 ` Michael J Gruber
0 siblings, 2 replies; 4+ messages in thread
From: Jonathan Nieder @ 2008-08-13 20:41 UTC (permalink / raw)
To: David Neu; +Cc: git
Hello,
David Neu wrote:
> Running
>
> git-filter-branch --tree-filter 'rm -rf subdir/' -- --all
>
> as shown below seems to leave empty commits
> corresponding to subdir/ in the tree. Is this the expected
> behavior? If so is there a command to remove the empty
> commits?
The following is probably overkill, but it is what I would do.
It's completely untested. If you'd prefer to do things by hand
instead, my only advice is that using grafts with filter-branch
might be easier than rebase -i.
-- snipsnip --
# prune-empty-commits - filter-branch filter to avoid boring commits
#
# Usage: git-filter-branch --tree-filter <something> \
# --commit-filter 'prune-empty-commits "$@"' -- <refs>
# Public domain.
interesting=
test "$#" -eq 1 && interesting=t
committree=$1
shift
for sha1 in "$@"
do
test z"$sha1" = z-p && continue
map "$sha1" | while read parent
do
parenttree=$(git log -1 --pretty=format:%T "$parent")
test "$committree" != "$parenttree" &&
interesting=t
test -n "$interesting" && break
done
test "-n interesting" && break
done
test -n "$interesting" && git commit-tree "$@" || skip_commit "$@"
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: git-filter-branch behavior
2008-08-13 20:41 ` Jonathan Nieder
@ 2008-08-13 21:00 ` Jonathan Nieder
2008-08-15 15:32 ` Michael J Gruber
1 sibling, 0 replies; 4+ messages in thread
From: Jonathan Nieder @ 2008-08-13 21:00 UTC (permalink / raw)
To: David Neu; +Cc: git
Jonathan Nieder wrote:
> # prune-empty-commits - filter-branch filter to avoid boring commits
> #
> # Usage: git-filter-branch --tree-filter <something> \
> # --commit-filter 'prune-empty-commits "$@"' -- <refs>
[...]
> map "$sha1" | while read parent
Oops - the 'map' function is not passed on to scripts, so one should
use this script with "--commit-filter '. prune-empty-commits'".
> test "-n interesting" && break
s/"-n interesting"/-n "$interesting"/
Sorry about that.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: git-filter-branch behavior
2008-08-13 20:41 ` Jonathan Nieder
2008-08-13 21:00 ` Jonathan Nieder
@ 2008-08-15 15:32 ` Michael J Gruber
1 sibling, 0 replies; 4+ messages in thread
From: Michael J Gruber @ 2008-08-15 15:32 UTC (permalink / raw)
To: git
Jonathan Nieder venit, vidit, dixit 13.08.2008 22:41:
> Hello,
>
> David Neu wrote:
>
>> Running
>>
>> git-filter-branch --tree-filter 'rm -rf subdir/' -- --all
>>
>> as shown below seems to leave empty commits
>> corresponding to subdir/ in the tree. Is this the expected
>> behavior? If so is there a command to remove the empty
>> commits?
>
> The following is probably overkill, but it is what I would do.
> It's completely untested. If you'd prefer to do things by hand
> instead, my only advice is that using grafts with filter-branch
> might be easier than rebase -i.
>
> -- snipsnip --
> # prune-empty-commits - filter-branch filter to avoid boring commits
> #
> # Usage: git-filter-branch --tree-filter <something> \
> # --commit-filter 'prune-empty-commits "$@"' -- <refs>
> # Public domain.
>
> interesting=
>
> test "$#" -eq 1 && interesting=t
>
> committree=$1
> shift
>
> for sha1 in "$@"
> do
> test z"$sha1" = z-p && continue
> map "$sha1" | while read parent
> do
> parenttree=$(git log -1 --pretty=format:%T "$parent")
> test "$committree" != "$parenttree" &&
> interesting=t
> test -n "$interesting" && break
> done
> test "-n interesting" && break
> done
>
> test -n "$interesting" && git commit-tree "$@" || skip_commit "$@"
You may want to pass the tree to be committed here ;)
I.e.:
git commit-tree $committree "$@"
etc.
Michael
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2008-08-15 15:33 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-13 16:14 git-filter-branch behavior David Neu
2008-08-13 20:41 ` Jonathan Nieder
2008-08-13 21:00 ` Jonathan Nieder
2008-08-15 15:32 ` Michael J Gruber
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).