mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-22 07:43:31 +01:00
Adds popular abort / continue
This commit is contained in:
parent
84e39885c4
commit
ce84456118
@ -16,6 +16,8 @@ https://github.com/Originate/git-town#commands
|
|||||||
| Alias | Command | Description |
|
| Alias | Command | Description |
|
||||||
|---------|----------------------------|----------------------------------------|
|
|---------|----------------------------|----------------------------------------|
|
||||||
| `gt` | `git town` | Git-Town command |
|
| `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 |
|
| `gth` | `git town hack` | New feature branch off main branch |
|
||||||
| `gtsy` | `git town sync` | Updates current branch w/ all changes |
|
| `gtsy` | `git town sync` | Updates current branch w/ all changes |
|
||||||
| `gtnpr` | `git town new-pull-request`| Create a new pull request |
|
| `gtnpr` | `git town new-pull-request`| Create a new pull request |
|
||||||
|
@ -7,12 +7,16 @@
|
|||||||
|
|
||||||
#Alias
|
#Alias
|
||||||
| `gt` | `git town` | Git-Town command |
|
| `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 |
|
| `gth` | `git town hack` | New feature branch off main branch |
|
||||||
| `gtsy` | `git town sync` | Updates current branch w/ all changes |
|
| `gtsy` | `git town sync` | Updates current branch w/ all changes |
|
||||||
| `gtnpr` | `git town new-pull-request`| Create a new pull request |
|
| `gtnpr` | `git town new-pull-request`| Create a new pull request |
|
||||||
| `gtsh` | `git town ship` | Delivers feature branch and removes it |
|
| `gtsh` | `git town ship` | Delivers feature branch and removes it |
|
||||||
|
|
||||||
alias gt='git town'
|
alias gt='git town'
|
||||||
|
alias gta='git town abort'
|
||||||
|
alias gtc='git town continue'
|
||||||
alias gth='git town hack'
|
alias gth='git town hack'
|
||||||
alias gtsy='git town sync'
|
alias gtsy='git town sync'
|
||||||
alias gtnpr='git town new-pull-request'
|
alias gtnpr='git town new-pull-request'
|
||||||
|
Loading…
Reference in New Issue
Block a user