Gustaf Hendeby <hendeby@xxxxxxxxxx> wrote: > 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@xxxxxxxxxx> Acked-by: Eric Wong <normalperson@xxxxxxxx> > --- > 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 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html