aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--alias4
-rw-r--r--tigrc1
2 files changed, 4 insertions, 1 deletions
diff --git a/alias b/alias
index 708f3a4..b45c53e 100644
--- a/alias
+++ b/alias
@@ -162,7 +162,9 @@ alias dc='docker-compose run --rm'
162alias ds='docker stop' 162alias ds='docker stop'
163alias drm='docker `docker ps -aq`' 163alias drm='docker `docker ps -aq`'
164alias dr='docker run --rm -it' 164alias dr='docker run --rm -it'
165alias drb='docker run --rm -it --entrypoint /bin/bash $1' 165drb() {
166 docker run --rm -it --entrypoint /bin/bash $@
167}
166 168
167# ssh 169# ssh
168alias keygen='ssh-keygen -t rsa -C "typebrook@gmail.com"' 170alias keygen='ssh-keygen -t rsa -C "typebrook@gmail.com"'
diff --git a/tigrc b/tigrc
index f3ad7a6..26c96c3 100644
--- a/tigrc
+++ b/tigrc
@@ -127,6 +127,7 @@ bind main m ?@git merge %(commit)
127bind main M ?@git merge %(branch) --no-ff 127bind main M ?@git merge %(branch) --no-ff
128bind main gm ?@git merge %(remote)/%(branch) # merge with current remote 128bind main gm ?@git merge %(remote)/%(branch) # merge with current remote
129bind main gM ?@git merge %(remote)/%(branch) --no-ff # merge-no-ff with current remote 129bind main gM ?@git merge %(remote)/%(branch) --no-ff # merge-no-ff with current remote
130bind main gs ?@git merge %(branch) --squash
130 131
131# push 132# push
132bind main p none # override default pager binding 133bind main p none # override default pager binding