* [PATCH 1/3] Add --reverse to the git-rev-list usage string
@ 2008-02-28 6:32 Kevin Ballard
2008-02-28 6:32 ` [PATCH 2/3] Document the sendemail.smtpserverport config variable Kevin Ballard
0 siblings, 1 reply; 3+ messages in thread
From: Kevin Ballard @ 2008-02-28 6:32 UTC (permalink / raw)
To: git, Junio C Hamano; +Cc: Kevin Ballard
---
I tried to send this a few days ago, but I wasn't subscribed
to the ML at that time and as near as I can tell, the patches
didn't go through.
builtin-rev-list.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/builtin-rev-list.c b/builtin-rev-list.c
index 6f7d5f8..d40ecc0 100644
--- a/builtin-rev-list.c
+++ b/builtin-rev-list.c
@@ -30,6 +30,7 @@ static const char rev_list_usage[] =
" ordering output:\n"
" --topo-order\n"
" --date-order\n"
+" --reverse\n"
" formatting output:\n"
" --parents\n"
" --objects | --objects-edge\n"
--
1.5.4.3.233.g52eaf
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 2/3] Document the sendemail.smtpserverport config variable
2008-02-28 6:32 [PATCH 1/3] Add --reverse to the git-rev-list usage string Kevin Ballard
@ 2008-02-28 6:32 ` Kevin Ballard
2008-02-28 6:32 ` [PATCH 3/3] Add test for filter-branch on a subdirectory that's been added and deleted and re-added Kevin Ballard
0 siblings, 1 reply; 3+ messages in thread
From: Kevin Ballard @ 2008-02-28 6:32 UTC (permalink / raw)
To: git, Junio C Hamano; +Cc: Kevin Ballard
---
Documentation/git-send-email.txt | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/Documentation/git-send-email.txt b/Documentation/git-send-email.txt
index 336d797..9d0a10c 100644
--- a/Documentation/git-send-email.txt
+++ b/Documentation/git-send-email.txt
@@ -216,6 +216,9 @@ sendemail.chainreplyto::
sendemail.smtpserver::
Default SMTP server to use.
+sendemail.smtpserverport::
+ Default SMTP server port to use.
+
sendemail.smtpuser::
Default SMTP-AUTH username.
--
1.5.4.3.233.g52eaf
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 3/3] Add test for filter-branch on a subdirectory that's been added and deleted and re-added
2008-02-28 6:32 ` [PATCH 2/3] Document the sendemail.smtpserverport config variable Kevin Ballard
@ 2008-02-28 6:32 ` Kevin Ballard
0 siblings, 0 replies; 3+ messages in thread
From: Kevin Ballard @ 2008-02-28 6:32 UTC (permalink / raw)
To: git, Junio C Hamano; +Cc: Kevin Ballard
---
t/t7003-filter-branch.sh | 13 +++++++++++++
1 files changed, 13 insertions(+), 0 deletions(-)
diff --git a/t/t7003-filter-branch.sh b/t/t7003-filter-branch.sh
index 868babc..9972343 100755
--- a/t/t7003-filter-branch.sh
+++ b/t/t7003-filter-branch.sh
@@ -179,4 +179,17 @@ test_expect_success 'Name needing quotes' '
'
+test_expect_success 'Subdirectory filter on non-contiguous folder' '
+ mkdir foo &&
+ touch foo/bar &&
+ git add foo &&
+ git commit -m "Adding foo" &&
+ git rm -r foo &&
+ git commit -m "Removing foo" &&
+ mkdir foo &&
+ touch foo/bar &&
+ git commit -m "Re-adding foo" &&
+ git filter-branch --subdirectory-filter foo
+'
+
test_done
--
1.5.4.3.233.g52eaf
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2008-02-28 6:33 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-02-28 6:32 [PATCH 1/3] Add --reverse to the git-rev-list usage string Kevin Ballard
2008-02-28 6:32 ` [PATCH 2/3] Document the sendemail.smtpserverport config variable Kevin Ballard
2008-02-28 6:32 ` [PATCH 3/3] Add test for filter-branch on a subdirectory that's been added and deleted and re-added Kevin Ballard
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).