fish: add git abbreviations
Signed-off-by: Myned <dev@bjork.tech>
This commit is contained in:
parent
702c9e860d
commit
4b5554f584
1 changed files with 26 additions and 4 deletions
|
@ -69,7 +69,6 @@ in {
|
||||||
c = "clear";
|
c = "clear";
|
||||||
e = "exit";
|
e = "exit";
|
||||||
m = "mosh";
|
m = "mosh";
|
||||||
s = "ssh";
|
|
||||||
|
|
||||||
d = "docker";
|
d = "docker";
|
||||||
dc = "docker compose";
|
dc = "docker compose";
|
||||||
|
@ -96,11 +95,31 @@ in {
|
||||||
dspav = "docker system prune --all --volumes";
|
dspav = "docker system prune --all --volumes";
|
||||||
|
|
||||||
g = "git";
|
g = "git";
|
||||||
gb = "git bisect";
|
ga = "git add";
|
||||||
gbb = "git bisect bad";
|
gb = "git branch";
|
||||||
gbg = "git bisect good";
|
gbi = "git bisect";
|
||||||
|
gbib = "git bisect bad";
|
||||||
|
gbig = "git bisect good";
|
||||||
gc = "git clone";
|
gc = "git clone";
|
||||||
|
gd = "git diff";
|
||||||
|
gf = "git fetch";
|
||||||
|
gi = "git init";
|
||||||
|
gk = "git checkout";
|
||||||
|
gl = "git log";
|
||||||
|
gm = "git merge";
|
||||||
|
gp = "git pull";
|
||||||
|
gps = "git push";
|
||||||
|
gr = "git reset";
|
||||||
|
grh = "git reset --hard";
|
||||||
|
grb = "git rebase";
|
||||||
|
grm = "git rm";
|
||||||
|
grt = "git remote";
|
||||||
|
grv = "git revert";
|
||||||
gs = "git status";
|
gs = "git status";
|
||||||
|
gsh = "git show";
|
||||||
|
gst = "git stash";
|
||||||
|
gsw = "git switch";
|
||||||
|
gy = "git cherrypick";
|
||||||
|
|
||||||
jc = "journalctl";
|
jc = "journalctl";
|
||||||
jcs = "journalctl --system";
|
jcs = "journalctl --system";
|
||||||
|
@ -161,6 +180,9 @@ in {
|
||||||
scut = "systemctl --user stop";
|
scut = "systemctl --user stop";
|
||||||
scuu = "systemctl --user unmask";
|
scuu = "systemctl --user unmask";
|
||||||
|
|
||||||
|
s = "ssh";
|
||||||
|
si = "ssh -o KexAlgorithms=+diffie-hellman-group1-sha1 -o HostkeyAlgorithms=+ssh-rsa -o Ciphers=aes256-cbc";
|
||||||
|
|
||||||
ta = "tmux attach";
|
ta = "tmux attach";
|
||||||
td = "tmux detach";
|
td = "tmux detach";
|
||||||
tk = "tmux kill-session";
|
tk = "tmux kill-session";
|
||||||
|
|
Loading…
Reference in a new issue