removed gsa alias

This commit is contained in:
pika 2024-05-22 17:45:25 +02:00
parent 93e0ca0f4a
commit 8132204c61

View file

@ -8,14 +8,7 @@ end
# │ If you have any questions, check the git page at: │ # │ If you have any questions, check the git page at: │
# │ https://git.k4li.de/pika/fish.git │ # │ https://git.k4li.de/pika/fish.git │
# ╰───────────────────────────────────────────────────╯ # ╰───────────────────────────────────────────────────╯
# ─────────────────────────────────< Environment-Variables >─────────────────────────────── # ─────────────────────────────────< Environment-Variables >───────────────────────────────
set fish_greeting
set toolbox "The following tools are active:
"
set warnings "The following packages are NOT active:
"
set -p EDITOR (which nvim) set -p EDITOR (which nvim)
@ -118,7 +111,7 @@ end
end end
# ─< colored everything >─────────────────────────────────────────────────────────────────── # ─< colored everything >───────────────────────────────────────────────────────────────────
alias ip="ip -c" alias ip="ip --color=always"
alias grep="grep --color=always" alias grep="grep --color=always"
# ─< weather >────────────────────────────────────────────────────────────────────────────── # ─< weather >──────────────────────────────────────────────────────────────────────────────
@ -127,6 +120,7 @@ alias www='curl wttr.in/Ulm'
# ─< rsync >──────────────────────────────────────────────────────────────────────────────── # ─< rsync >────────────────────────────────────────────────────────────────────────────────
if command -v rsync >/dev/null 2>&1 if command -v rsync >/dev/null 2>&1
alias cp='rsync -avP' alias cp='rsync -avP'
alias scp='rsync -avP'
end end
# ─< bat alias >──────────────────────────────────────────────────────────────────────────── # ─< bat alias >────────────────────────────────────────────────────────────────────────────
@ -158,18 +152,17 @@ if command -v docker >/dev/null 2>&1
alias appudpate='docker pull && docker compose up -d --force-recreate' alias appudpate='docker pull && docker compose up -d --force-recreate'
end end
# ─< g stands for git >───────────────────────────────────────────────────────────────────── # ─< g stands for git >─────────────────────────────────────────────────────────────────────
if command -v git >/dev/null 2>&1 if command -v git >/dev/null 2>&1
alias g='git' alias g='git'
alias gs='git status' alias gs='git status'
alias gf='git fetch && git merge origin/main' alias gf='git fetch'
alias gf='git fetch && git merge'
alias gc='git clone --recurse-submodule' alias gc='git clone --recurse-submodule'
alias ga='git add' alias ga='git add'
alias gp='git pull --recurse-submodule' alias gp='git pull --recurse-submodule'
alias gsu='git submodule foreach git pull' alias gsu='git submodule foreach git pull && git add .'
alias gsa='git submodule add -b' # alias gsa='git submodule add -b'
alias gcm='git commit -m' alias gcm='git commit -m'
alias gpu='git push --recurse-submodule=on-demand' alias gpu='git push --recurse-submodule=on-demand'
end end