Adds popular abort / continue

This commit is contained in:
Josh Powell 2019-07-24 09:49:44 -04:00
parent 84e39885c4
commit ce84456118
2 changed files with 6 additions and 0 deletions

View File

@ -16,6 +16,8 @@ https://github.com/Originate/git-town#commands
| Alias | Command | Description |
|---------|----------------------------|----------------------------------------|
| `gt` | `git town` | Git-Town command |
| `gtab` | `git town abort` | Aborts the last run git-town command |
| `gtc` | `git town continue` | Restarts last after resolved conflict |
| `gth` | `git town hack` | New feature branch off main branch |
| `gtsy` | `git town sync` | Updates current branch w/ all changes |
| `gtnpr` | `git town new-pull-request`| Create a new pull request |

View File

@ -7,12 +7,16 @@
#Alias
| `gt` | `git town` | Git-Town command |
| `gtab` | `git town abort` | Aborts the last run git-town command |
| `gtc` | `git town continue` | Restarts last after resolved conflict |
| `gth` | `git town hack` | New feature branch off main branch |
| `gtsy` | `git town sync` | Updates current branch w/ all changes |
| `gtnpr` | `git town new-pull-request`| Create a new pull request |
| `gtsh` | `git town ship` | Delivers feature branch and removes it |
alias gt='git town'
alias gta='git town abort'
alias gtc='git town continue'
alias gth='git town hack'
alias gtsy='git town sync'
alias gtnpr='git town new-pull-request'