* [PATCH] Documentation/git-filter-branch: add a new commit-filter example
@ 2008-02-23 19:30 Miklos Vajna
2008-02-23 19:45 ` Junio C Hamano
0 siblings, 1 reply; 6+ messages in thread
From: Miklos Vajna @ 2008-02-23 19:30 UTC (permalink / raw)
To: Junio C Hamano; +Cc: git
There is a commit-filter example already which skips commits but there is no
example on how to edit commit messages.
One can figure out this example by carefully reading the git-filter-branch and
git-commit-tree documentation but I think it isn't trivial so this example is
helpful.
Signed-off-by: Miklos Vajna <vmiklos@frugalware.org>
---
The lack of such an example was noticed by dvorak on IRC.
Documentation/git-filter-branch.txt | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/Documentation/git-filter-branch.txt b/Documentation/git-filter-branch.txt
index e22dfa5..a035b9c 100644
--- a/Documentation/git-filter-branch.txt
+++ b/Documentation/git-filter-branch.txt
@@ -240,6 +240,12 @@ committed a merge between P1 and P2, it will be propagated properly
and all children of the merge will become merge commits with P1,P2
as their parents instead of the merge commit.
+To remove the 'git-svn-id' strings from commit messages in a repository created
+by git-svn:
+
+------------------------------------------------------------------------------
+git filter-branch --commit-filter 'sed "/^git-svn-id:/d" |git commit-tree "$@"'
+------------------------------------------------------------------------------
To restrict rewriting to only part of the history, specify a revision
range in addition to the new branch name. The new branch name will
--
1.5.4.2
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] Documentation/git-filter-branch: add a new commit-filter example
2008-02-23 19:30 [PATCH] Documentation/git-filter-branch: add a new commit-filter example Miklos Vajna
@ 2008-02-23 19:45 ` Junio C Hamano
2008-02-23 22:04 ` Miklos Vajna
0 siblings, 1 reply; 6+ messages in thread
From: Junio C Hamano @ 2008-02-23 19:45 UTC (permalink / raw)
To: Miklos Vajna; +Cc: git
Miklos Vajna <vmiklos@frugalware.org> writes:
> There is a commit-filter example already which skips commits but there is no
> example on how to edit commit messages.
>
> One can figure out this example by carefully reading the git-filter-branch and
> git-commit-tree documentation but I think it isn't trivial so this example is
> helpful.
>
> Signed-off-by: Miklos Vajna <vmiklos@frugalware.org>
> ---
>
> The lack of such an example was noticed by dvorak on IRC.
>
> Documentation/git-filter-branch.txt | 6 ++++++
> 1 files changed, 6 insertions(+), 0 deletions(-)
>
> diff --git a/Documentation/git-filter-branch.txt b/Documentation/git-filter-branch.txt
> index e22dfa5..a035b9c 100644
> --- a/Documentation/git-filter-branch.txt
> +++ b/Documentation/git-filter-branch.txt
> @@ -240,6 +240,12 @@ committed a merge between P1 and P2, it will be propagated properly
> and all children of the merge will become merge commits with P1,P2
> as their parents instead of the merge commit.
>
> +To remove the 'git-svn-id' strings from commit messages in a repository created
> +by git-svn:
People who are not interested in git-svn at all may still want
to fix up their commit log messages, and I think starting a
paragraph with 'git-svn-blah' would risk them skipping it
without reading (I certainly would). Probably we would want to
add a sentence before "To remove ...", like this:
You can rewrite the commit log messages using `--commit-filter`.
For example, `git-svn-id` strings in a repository created with
`git-svn` can be cleaned up this way:
> +------------------------------------------------------------------------------
> +git filter-branch --commit-filter 'sed "/^git-svn-id:/d" |git commit-tree "$@"'
> +------------------------------------------------------------------------------
Please try to keep them a bit shorter for reviewing pleasure on
80-column terminals after your message was quoted once or
perhaps a few times. The example is easier to read if you write
like this, I think:
----------------------------------------------------------------
git filter-branch --commit-filter '
sed -e "/^git-svn-id:/d" | git commit-tree "$@"
'
----------------------------------------------------------------
I am not sure if git-svn people condone or encourage such
removals, though.
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH] Documentation/git-filter-branch: add a new commit-filter example
2008-02-23 19:45 ` Junio C Hamano
@ 2008-02-23 22:04 ` Miklos Vajna
2008-02-24 10:53 ` Johannes Schindelin
0 siblings, 1 reply; 6+ messages in thread
From: Miklos Vajna @ 2008-02-23 22:04 UTC (permalink / raw)
To: Junio C Hamano; +Cc: git
There is a commit-filter example already which skips commits but there is no
example on how to edit commit messages.
One can figure out this example by carefully reading the git-filter-branch and
git-commit-tree documentation but I think it isn't trivial so this example is
helpful.
Signed-off-by: Miklos Vajna <vmiklos@frugalware.org>
---
On Sat, Feb 23, 2008 at 11:45:28AM -0800, Junio C Hamano
<gitster@pobox.com> wrote:
> People who are not interested in git-svn at all may still want
> to fix up their commit log messages, and I think starting a
> paragraph with 'git-svn-blah' would risk them skipping it
> without reading (I certainly would). Probably we would want to
> add a sentence before "To remove ...", like this:
>
> You can rewrite the commit log messages using `--commit-filter`.
> For example, `git-svn-id` strings in a repository created with
> `git-svn` can be cleaned up this way:
second try follows :)
>
> > +------------------------------------------------------------------------------
> > +git filter-branch --commit-filter 'sed "/^git-svn-id:/d" |git
> > commit-tree "$@"'
> > +------------------------------------------------------------------------------
>
> Please try to keep them a bit shorter for reviewing pleasure on
> 80-column terminals after your message was quoted once or
> perhaps a few times. The example is easier to read if you write
> like this, I think:
>
> ----------------------------------------------------------------
> git filter-branch --commit-filter '
> sed -e "/^git-svn-id:/d" | git commit-tree "$@"
> '
> ----------------------------------------------------------------
>
ok. i used 72 in my mails and 80 in the code, but now i'm using 72 in
the code as well.
> I am not sure if git-svn people condone or encourage such
> removals, though.
i think it's only useful if you use git-svn for an svn -> git
conversion, provided that the project switches to git (there will be no
more svn commits and noone wants to push back git commits to svn).
Documentation/git-filter-branch.txt | 9 +++++++++
1 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/Documentation/git-filter-branch.txt b/Documentation/git-filter-branch.txt
index e22dfa5..367064b 100644
--- a/Documentation/git-filter-branch.txt
+++ b/Documentation/git-filter-branch.txt
@@ -240,6 +240,15 @@ committed a merge between P1 and P2, it will be propagated properly
and all children of the merge will become merge commits with P1,P2
as their parents instead of the merge commit.
+You can rewrite the commit log messages using `--commit-filter`. For
+example, `git-svn-id` strings in a repository created by `git-svn` can
+be removed this way:
+
+-------------------------------------------------------
+git filter-branch --commit-filter '
+ sed -e "/^git-svn-id:/d" | git commit-tree "$@"
+'
+-------------------------------------------------------
To restrict rewriting to only part of the history, specify a revision
range in addition to the new branch name. The new branch name will
--
1.5.4.2
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] Documentation/git-filter-branch: add a new commit-filter example
2008-02-23 22:04 ` Miklos Vajna
@ 2008-02-24 10:53 ` Johannes Schindelin
2008-02-24 17:58 ` Junio C Hamano
0 siblings, 1 reply; 6+ messages in thread
From: Johannes Schindelin @ 2008-02-24 10:53 UTC (permalink / raw)
To: Miklos Vajna; +Cc: Junio C Hamano, git
Hi,
On Sat, 23 Feb 2008, Miklos Vajna wrote:
> +-------------------------------------------------------
> +git filter-branch --commit-filter '
> + sed -e "/^git-svn-id:/d" | git commit-tree "$@"
> +'
> +-------------------------------------------------------
And there I thought that was the job of --msg-filter ;-)
Ciao,
Dscho
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] Documentation/git-filter-branch: add a new commit-filter example
2008-02-24 10:53 ` Johannes Schindelin
@ 2008-02-24 17:58 ` Junio C Hamano
2008-02-25 14:43 ` [PATCH] Documentation/git-filter-branch: add a new msg-filter example Miklos Vajna
0 siblings, 1 reply; 6+ messages in thread
From: Junio C Hamano @ 2008-02-24 17:58 UTC (permalink / raw)
To: Johannes Schindelin; +Cc: Miklos Vajna, git
Johannes Schindelin <Johannes.Schindelin@gmx.de> writes:
> On Sat, 23 Feb 2008, Miklos Vajna wrote:
>
>> +-------------------------------------------------------
>> +git filter-branch --commit-filter '
>> + sed -e "/^git-svn-id:/d" | git commit-tree "$@"
>> +'
>> +-------------------------------------------------------
>
> And there I thought that was the job of --msg-filter ;-)
Ahhhhhhh, that was the little voice that kept telling me there
is something wrong with the patch...
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH] Documentation/git-filter-branch: add a new msg-filter example
2008-02-24 17:58 ` Junio C Hamano
@ 2008-02-25 14:43 ` Miklos Vajna
0 siblings, 0 replies; 6+ messages in thread
From: Miklos Vajna @ 2008-02-25 14:43 UTC (permalink / raw)
To: Junio C Hamano; +Cc: Johannes Schindelin, git
There were no example on how to edit commit messages, so add an msg-filter
example.
Signed-off-by: Miklos Vajna <vmiklos@frugalware.org>
---
On Sun, Feb 24, 2008 at 09:58:41AM -0800, Junio C Hamano <gitster@pobox.com> wrote:
> Ahhhhhhh, that was the little voice that kept telling me there
> is something wrong with the patch...
uh-oh. third try :)
Documentation/git-filter-branch.txt | 9 +++++++++
1 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/Documentation/git-filter-branch.txt b/Documentation/git-filter-branch.txt
index e22dfa5..1948f6f 100644
--- a/Documentation/git-filter-branch.txt
+++ b/Documentation/git-filter-branch.txt
@@ -240,6 +240,15 @@ committed a merge between P1 and P2, it will be propagated properly
and all children of the merge will become merge commits with P1,P2
as their parents instead of the merge commit.
+You can rewrite the commit log messages using `--message-filter`. For
+example, `git-svn-id` strings in a repository created by `git-svn` can
+be removed this way:
+
+-------------------------------------------------------
+git filter-branch --message-filter '
+ sed -e "/^git-svn-id:/d"
+'
+-------------------------------------------------------
To restrict rewriting to only part of the history, specify a revision
range in addition to the new branch name. The new branch name will
--
1.5.4.3
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2008-02-25 14:44 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-23 19:30 [PATCH] Documentation/git-filter-branch: add a new commit-filter example Miklos Vajna
2008-02-23 19:45 ` Junio C Hamano
2008-02-23 22:04 ` Miklos Vajna
2008-02-24 10:53 ` Johannes Schindelin
2008-02-24 17:58 ` Junio C Hamano
2008-02-25 14:43 ` [PATCH] Documentation/git-filter-branch: add a new msg-filter example Miklos Vajna
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).