| OLD | NEW |
| (Empty) | |
| 1 #!/bin/sh |
| 2 cd `dirname $0`/.. |
| 3 set -e |
| 4 git checkout master |
| 5 git pull |
| 6 cd ../.. |
| 7 git checkout master |
| 8 git pull |
| 9 gclient sync |
| 10 cd third_party/WebKit |
| 11 |
| 12 git checkout EnableSP |
| 13 git rebase |
| 14 sp/gen-expectations |
| 15 git commit -a --amend -m "" |
| 16 |
| 17 if git branch -D EnableSPCull-temp EnableSPUnderInvalidation-temp; then |
| 18 true # Ignore any error |
| 19 fi |
| 20 |
| 21 TRY="git cl try -b linux_blink_rel -b mac_blink_rel -b win_blink_rel" |
| 22 |
| 23 git checkout -tb EnableSPCull-temp origin/master |
| 24 git cherry-pick EnableSP |
| 25 git cherry-pick EnableSPCull |
| 26 git branch -D EnableSPCull |
| 27 git branch -m EnableSPCull |
| 28 git cl issue 1135703003 |
| 29 |
| 30 git checkout -tb EnableSPUnderInvalidation-temp origin/master |
| 31 git cherry-pick EnableSP |
| 32 git cherry-pick EnableSPUnderInvalidation |
| 33 git branch -D EnableSPUnderInvalidation |
| 34 git branch -m EnableSPUnderInvalidation |
| 35 git cl issue 1132203003 |
| 36 |
| 37 git checkout EnableSP |
| 38 date | git cl upload |
| 39 $TRY |
| 40 |
| 41 git checkout EnableSPCull |
| 42 date | git cl upload |
| 43 $TRY |
| 44 |
| 45 git checkout EnableSPUnderInvalidation |
| 46 date | git cl upload |
| 47 $TRY -b linux_blink_dbg -b mac_blink_dbg -b win_blink_dbg |
| OLD | NEW |