* [PATCH] Minor clarifications to git-filter-branch usage and doc
@ 2007-08-17 21:23 Brian Gernhardt
2007-08-17 21:53 ` Johannes Schindelin
0 siblings, 1 reply; 4+ messages in thread
From: Brian Gernhardt @ 2007-08-17 21:23 UTC (permalink / raw)
To: git
- Remove "DESTBRANCH" from usage, as it rewrites the branches given
- Remove an = from an example usage that the script doesn't understand
Signed-off-by: Brian Gernhardt <benji@silverinsanity.com>
---
It took me way too long to figure out how to just delete a single file
from the history.
From the docs and usage it looked I needed
$ git filter-branch --index-filter \
"git update-index --force-remove file" \
--tag-name-filter=cat newbranch HEAD
I eventually determined the following
$ git filter-branch --index-filter \
"git update-index --force-remove file" \
--tag-name-filter cat master
The following changes changes the parts that led me astray, although I
think it still could be clearer even if I don't know how to write it.
Documentation/git-filter-branch.txt | 2 +-
git-filter-branch.sh | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Documentation/git-filter-branch.txt b/Documentation/git-filter-branch.txt
index 915258f..8c43be6 100644
--- a/Documentation/git-filter-branch.txt
+++ b/Documentation/git-filter-branch.txt
@@ -120,7 +120,7 @@ have all of them as parents.
tag name is expected on standard output.
+
The original tags are not deleted, but can be overwritten;
-use "--tag-name-filter=cat" to simply update the tags. In this
+use "--tag-name-filter cat" to simply update the tags. In this
case, be very careful and make sure you have the old tags
backed up in case the conversion has run afoul.
+
diff --git a/git-filter-branch.sh b/git-filter-branch.sh
index c42e451..9f10c30 100755
--- a/git-filter-branch.sh
+++ b/git-filter-branch.sh
@@ -8,7 +8,7 @@
# a new branch. You can specify a number of filters to modify the commits,
# files and trees.
-USAGE="git-filter-branch [-d TEMPDIR] [FILTERS] DESTBRANCH [REV-RANGE]"
+USAGE="git-filter-branch [-d TEMPDIR] [FILTERS] [BRANCHES]"
. git-sh-setup
warn () {
--
1.5.3.rc5.11.g312e
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] Minor clarifications to git-filter-branch usage and doc
2007-08-17 21:23 [PATCH] Minor clarifications to git-filter-branch usage and doc Brian Gernhardt
@ 2007-08-17 21:53 ` Johannes Schindelin
2007-08-17 23:13 ` [PATCH v2] " Brian Gernhardt
0 siblings, 1 reply; 4+ messages in thread
From: Johannes Schindelin @ 2007-08-17 21:53 UTC (permalink / raw)
To: Brian Gernhardt; +Cc: git
Hi,
On Fri, 17 Aug 2007, Brian Gernhardt wrote:
> -USAGE="git-filter-branch [-d TEMPDIR] [FILTERS] DESTBRANCH [REV-RANGE]"
> +USAGE="git-filter-branch [-d TEMPDIR] [FILTERS] [BRANCHES]"
It is not just [BRANCHES]. Something like "HEAD~2..HEAD" is perfectly
valid, and it will rewrite only the commits in that range, leaving HEAD~2
and ancestors alone.
Ciao,
Dscho
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH v2] Minor clarifications to git-filter-branch usage and doc
2007-08-17 21:53 ` Johannes Schindelin
@ 2007-08-17 23:13 ` Brian Gernhardt
2007-08-17 23:33 ` Junio C Hamano
0 siblings, 1 reply; 4+ messages in thread
From: Brian Gernhardt @ 2007-08-17 23:13 UTC (permalink / raw)
To: git
- Remove "DESTBRANCH" from usage, as it rewrites the branches given.
- Remove an = from an example usage, as the script doesn't understand
it.
Signed-off-by: Brian Gernhardt <benji@silverinsanity.com>
---
On Aug 17, 2007, at 5:53 PM, Johannes Schindelin wrote:
> On Fri, 17 Aug 2007, Brian Gernhardt wrote:
>
>> -USAGE="git-filter-branch [-d TEMPDIR] [FILTERS] DESTBRANCH [REV-RANGE]"
>> +USAGE="git-filter-branch [-d TEMPDIR] [FILTERS] [BRANCHES]"
>
> It is not just [BRANCHES]. Something like "HEAD~2..HEAD" is perfectly
> valid, and it will rewrite only the commits in that range, leaving HEAD~2
> and ancestors alone.
Well then that should be left as REV-RANGE then, but DESTBRANCH still
needs to leave.
Documentation/git-filter-branch.txt | 2 +-
git-filter-branch.sh | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/Documentation/git-filter-branch.txt b/Documentation/git-filter-branch.txt
index 915258f..8c43be6 100644
--- a/Documentation/git-filter-branch.txt
+++ b/Documentation/git-filter-branch.txt
@@ -120,7 +120,7 @@ have all of them as parents.
tag name is expected on standard output.
+
The original tags are not deleted, but can be overwritten;
-use "--tag-name-filter=cat" to simply update the tags. In this
+use "--tag-name-filter cat" to simply update the tags. In this
case, be very careful and make sure you have the old tags
backed up in case the conversion has run afoul.
+
diff --git a/git-filter-branch.sh b/git-filter-branch.sh
index c42e451..0190060 100755
--- a/git-filter-branch.sh
+++ b/git-filter-branch.sh
@@ -8,7 +8,7 @@
# a new branch. You can specify a number of filters to modify the commits,
# files and trees.
-USAGE="git-filter-branch [-d TEMPDIR] [FILTERS] DESTBRANCH [REV-RANGE]"
+USAGE="git-filter-branch [-d TEMPDIR] [FILTERS] [REV-RANGE]"
. git-sh-setup
warn () {
--
1.5.3.rc5.11.g312e
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v2] Minor clarifications to git-filter-branch usage and doc
2007-08-17 23:13 ` [PATCH v2] " Brian Gernhardt
@ 2007-08-17 23:33 ` Junio C Hamano
0 siblings, 0 replies; 4+ messages in thread
From: Junio C Hamano @ 2007-08-17 23:33 UTC (permalink / raw)
To: Brian Gernhardt; +Cc: git, Johannes Schindelin
Thanks.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2007-08-17 23:33 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-08-17 21:23 [PATCH] Minor clarifications to git-filter-branch usage and doc Brian Gernhardt
2007-08-17 21:53 ` Johannes Schindelin
2007-08-17 23:13 ` [PATCH v2] " Brian Gernhardt
2007-08-17 23:33 ` Junio C Hamano
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).