We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba76af7 commit ad6ff61Copy full SHA for ad6ff61
1 file changed
git-svn-synchronizer.sh
@@ -76,13 +76,12 @@ fi
76
if ! test -d .git/svn || test "a$SVN_URL" != "a$(git config svn-remote.svn.url)"
77
then
78
# Try standard trunk/branches/tags setup first
79
- if ! git svn init -s "$SVN_URL" &&
80
- ! git svn fetch &&
81
- ! git rev-parse refs/remotes/trunk
82
- then
+ git svn init -s "$SVN_URL" &&
+ git svn fetch &&
+ git rev-parse refs/remotes/trunk || {
83
git svn init "$SVN_URL" &&
84
git svn fetch
85
- fi
+ }
86
else
87
88
fi
0 commit comments