git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] git-svn: Make create-ignore use git add -f
@ 2008-05-04 22:33 Gustaf Hendeby
  2008-05-04 22:33 ` [PATCH] Documentation: Add create-ignore to git svn manual Gustaf Hendeby
  2008-05-05  4:04 ` [PATCH] git-svn: Make create-ignore use git add -f Eric Wong
  0 siblings, 2 replies; 4+ messages in thread
From: Gustaf Hendeby @ 2008-05-04 22:33 UTC (permalink / raw)
  To: git; +Cc: gitster, normalperson, Gustaf Hendeby

When having a svn:ignore that ignores the .gitignore file the -f
option to git add must be used to avoid git complaining about adding
an ignored file and hence stop the process of creating .gitignores.

Signed-off-by: Gustaf Hendeby <hendeby@isy.liu.se>
---
 git-svn.perl |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/git-svn.perl b/git-svn.perl
index 81afb5c..d6d7b1a 100755
--- a/git-svn.perl
+++ b/git-svn.perl
@@ -612,7 +612,7 @@ sub cmd_create_ignore {
 		print GITIGNORE "$s\n";
 		close(GITIGNORE)
 		  or fatal("Failed to close `$ignore': $!");
-		command_noisy('add', $ignore);
+		command_noisy('add', '-f', $ignore);
 	});
 }
 
-- 
1.5.5.1.246.gafa4

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2008-05-05  4:05 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-04 22:33 [PATCH] git-svn: Make create-ignore use git add -f Gustaf Hendeby
2008-05-04 22:33 ` [PATCH] Documentation: Add create-ignore to git svn manual Gustaf Hendeby
2008-05-05  4:04   ` Eric Wong
2008-05-05  4:04 ` [PATCH] git-svn: Make create-ignore use git add -f Eric Wong

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).