| OLD | NEW |
| 1 #!/bin/bash | 1 #!/bin/bash |
| 2 BLANK_DEMO=1 | 2 BLANK_DEMO=1 |
| 3 . demo_repo.sh | 3 . demo_repo.sh |
| 4 | 4 |
| 5 trunc() { | 5 trunc() { |
| 6 echo ... truncated output ... | 6 echo ... truncated output ... |
| 7 } | 7 } |
| 8 | 8 |
| 9 trunc_command() { | 9 trunc_command() { |
| 10 pcommand "$@" | 10 pcommand "$@" |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 run git add "$WS" | 146 run git add "$WS" |
| 147 run git diff --cached | 147 run git diff --cached |
| 148 | 148 |
| 149 comment "Much better" | 149 comment "Much better" |
| 150 run git rebase --continue | 150 run git rebase --continue |
| 151 run git rebase-update | 151 run git rebase-update |
| 152 silent git tag -d $(git tag -l 'stage_*') | 152 silent git tag -d $(git tag -l 'stage_*') |
| 153 trunc_command gclient sync | 153 trunc_command gclient sync |
| 154 map | 154 map |
| 155 trunc_command git cl upload | 155 trunc_command git cl upload |
| OLD | NEW |