From: Oleg Broytman Date: Fri, 25 Apr 2014 01:53:16 +0000 (+0400) Subject: Do not check for an error if create-ignore didn't create .gitignore X-Git-Url: https://git.phdru.name/?p=git-scripts.git;a=commitdiff_plain;h=965d6350aa9d0c01aed5281cd4bf7d6dcd837fef Do not check for an error if create-ignore didn't create .gitignore --- diff --git a/svn/clone b/svn/clone index 2ac2d34..8e880c3 100755 --- a/svn/clone +++ b/svn/clone @@ -35,7 +35,7 @@ cd "$dir" && # convert svn:ignore to .gitignore git svn create-ignore && -git commit -m "Add .gitignore" && +git commit -m "Add .gitignore" # preserve authors.txt cp -p ../authors.txt .git/info &&