[3413] | 1 | RED='\033[0;31m' |
---|
| 2 | NC='\033[0m' # No Color |
---|
| 3 | |
---|
| 4 | # check if on master |
---|
[3415] | 5 | local_branch=$(git branch --show-current) |
---|
[3449] | 6 | |
---|
| 7 | echo Branch: $local_branch |
---|
| 8 | |
---|
| 9 | echo done |
---|
[3415] | 10 | if [ ${local_branch} != "master" ]; then |
---|
[3440] | 11 | # exit 0 # if on other branch than master, do not sync with svn |
---|
[3449] | 12 | use_hook=false |
---|
| 13 | while read local_ref local_oid remote_ref remote_oid; do |
---|
| 14 | # echo $local_ref $local_oid $remote_ref $remote_oid |
---|
| 15 | if test $local_ref = "refs/heads/master"; then |
---|
| 16 | use_hook=true |
---|
| 17 | fi |
---|
| 18 | done |
---|
| 19 | if test $use_hook = "false" ;then |
---|
| 20 | echo "Sync with svn not necessary, no changes in master to be pushed." |
---|
| 21 | echo "Continuing with push on $local_branch." |
---|
| 22 | exit 0 # push only on local branch |
---|
| 23 | fi |
---|
[3440] | 24 | git checkout master |
---|
[3449] | 25 | git pull --rebase origin master |
---|
[3413] | 26 | fi |
---|
[3449] | 27 | |
---|
[3413] | 28 | # git update-ref refs/remotes/git-svn refs/remotes/origin/master # what's this supposed to do? |
---|
| 29 | |
---|
| 30 | ### check if git svn exists |
---|
| 31 | git svn info>/dev/null 2>&1 |
---|
| 32 | GITSVN=$? |
---|
| 33 | if [ $GITSVN != 0 ] |
---|
| 34 | then |
---|
| 35 | printf "${RED}You need to install git svn to use this script.${NC}\n" |
---|
[3415] | 36 | git checkout ${local_branch} |
---|
[3413] | 37 | exit $GITSVN |
---|
| 38 | fi |
---|
| 39 | |
---|
| 40 | HEAD=$(git rev-list master|head -n 1) |
---|
| 41 | CUR=$(git rev-list master | wc -l) |
---|
| 42 | echo "Before rebase, master had $CUR commits" |
---|
| 43 | |
---|
| 44 | ### get changes from svn |
---|
| 45 | git svn rebase |
---|
| 46 | REBASED=$? |
---|
| 47 | if [ $REBASED != 0 ] # check if rebase worked |
---|
| 48 | then |
---|
| 49 | echo "${RED}git svn rebase failed.${NC}\n" |
---|
[3415] | 50 | git checkout ${local_branch} |
---|
[3413] | 51 | exit $REBASED |
---|
| 52 | fi |
---|
| 53 | POST=$(git rev-list master | wc -l) |
---|
| 54 | echo "After rebase, master has $POST commits" |
---|
| 55 | echo "Object counts were $CUR::$POST" |
---|
| 56 | # if [ ! $CUR = $POST ] # check if there were changes from svn |
---|
| 57 | # then |
---|
| 58 | # # do not push yet, check if everything is good |
---|
| 59 | # echo "Got changes from SVN, please ensure the history is clean." |
---|
| 60 | # echo "Once satisfied, you can push again!" |
---|
| 61 | # exit 1 |
---|
| 62 | # fi |
---|
| 63 | echo "git svn rebase worked." |
---|
| 64 | |
---|
| 65 | ### commit changes to svn |
---|
[3440] | 66 | git svn dcommit < /dev/tty |
---|
[3413] | 67 | COMMITED=$? |
---|
| 68 | if [ $COMMITED != 0 ] # check if rebase worked |
---|
| 69 | then |
---|
| 70 | printf "${RED}git svn dcommit failed.${NC}\n" |
---|
[3524] | 71 | printf "${RED}It might just be 'normal' git-svn sync.${NC}\n" |
---|
| 72 | printf "${RED}You may try to push a second time.${NC}\n" |
---|
| 73 | printf "${RED}Be sure to check the status of all branches otherwise.${NC}\n" |
---|
[3415] | 74 | git checkout ${local_branch} |
---|
[3413] | 75 | exit $COMMITED |
---|
| 76 | fi |
---|
| 77 | echo "git svn dcommit worked" |
---|
| 78 | |
---|
| 79 | ### check if svn was up to date with local changes before push (git svn dcommit changes hashes) |
---|
| 80 | GITSVN=$(git rev-parse git-svn) |
---|
| 81 | echo "local is at $HEAD" |
---|
[3414] | 82 | echo "svn is at $GITSVN" |
---|
[3413] | 83 | if [ "$HEAD" != "$GITSVN" ] # check if dcommit changed hashes |
---|
| 84 | then |
---|
| 85 | echo "svn and local git not at same revision." |
---|
| 86 | printf "${RED}Please check the status of all branches${NC}\n" |
---|
| 87 | printf "${RED}with git log for example.${NC}\n" |
---|
| 88 | printf "${RED}And synchronize svn and git.${NC}\n" |
---|
| 89 | printf "${RED}You will need to push again after.${NC}\n" |
---|
[3415] | 90 | git checkout ${local_branch} |
---|
[3413] | 91 | exit 1 |
---|
| 92 | fi |
---|
| 93 | |
---|
| 94 | echo "No changes between svn and local changes. Pushing..." |
---|
| 95 | |
---|
| 96 | # push only if svn was already up to date with local master |
---|
[3415] | 97 | git checkout ${local_branch} |
---|
[3413] | 98 | exit 0 |
---|