diff options
Diffstat (limited to 'tigrc')
| -rw-r--r-- | tigrc | 9 |
1 files changed, 6 insertions, 3 deletions
| @@ -18,14 +18,15 @@ bind main c @sh -c "git branch --points-at=%(commit) | \ | |||
| 18 | head -1 | \ | 18 | head -1 | \ |
| 19 | xargs git checkout" | 19 | xargs git checkout" |
| 20 | bind main T @git tag "%(prompt Enter tag name: )" %(commit) | 20 | bind main T @git tag "%(prompt Enter tag name: )" %(commit) |
| 21 | bind main gdt @git tag -d %(tag) | ||
| 21 | bind main <Ctrl-r> !?git rebase -i %(commit) | 22 | bind main <Ctrl-r> !?git rebase -i %(commit) |
| 22 | bind main m ?git merge %(commit) | 23 | bind main m ?git merge %(commit) |
| 23 | bind main P ?git push | 24 | bind main P ?git push |
| 24 | bind main b @git checkout -b "%(prompt Enter branch name: )" %(commit) | 25 | bind main b @git checkout -b "%(prompt Enter branch name: )" |
| 25 | bind main B !sh scripts/bump_version.sh | 26 | bind main B !sh scripts/bump_version.sh |
| 26 | bind main V @git log -S "%(prompt Enter search word: )" | 27 | bind main V @git log -S "%(prompt Enter search word: )" |
| 27 | bind main gd !git branch -d "%(prompt Delete branch: )" | 28 | bind main gdb !git branch -d "%(prompt Delete branch: )" |
| 28 | bind main gD ?git branch -D "%(prompt Delete branch anyway: )" | 29 | bind main gDb ?git branch -D "%(prompt Delete branch anyway: )" |
| 29 | bind main gsr ?git reset %(commit) --soft | 30 | bind main gsr ?git reset %(commit) --soft |
| 30 | bind main ghr ?git reset %(commit) --hard | 31 | bind main ghr ?git reset %(commit) --hard |
| 31 | 32 | ||
| @@ -43,6 +44,8 @@ bind status S @git stash save "%(prompt Enter stash name: )" | |||
| 43 | bind status p ?git stash pop | 44 | bind status p ?git stash pop |
| 44 | bind status D ?rm %(file) | 45 | bind status D ?rm %(file) |
| 45 | bind status a ?git commit --amend | 46 | bind status a ?git commit --amend |
| 47 | bind status j :/^[MADRU?] | ||
| 48 | bind status k :?^[MADRU?] | ||
| 46 | 49 | ||
| 47 | bind stash D ?git stash drop %(stash) | 50 | bind stash D ?git stash drop %(stash) |
| 48 | bind stash a ?git stash apply %(stash) | 51 | bind stash a ?git stash apply %(stash) |