repo.or.cz
/
git-scripts.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Improve svn-new-branch documentation.
[git-scripts.git]
/
git-svnci
blob
9185861375e3f2074de9c86caf990bfddd6fbb8f
1
#!/bin/bash
2
3
if
[[
"$(git stash)"
==
"No local changes to save"
]];
then
4
NO_STASH
=
true
5
fi
6
git svn dcommit
7
8
if
[[
"
$NO_STASH
"
!=
"true"
]];
then
9
git stash apply
10
fi