From b5da948ea2f419359b0842287d338f11192b735e Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Mon, 6 Apr 2026 15:26:37 +0300 Subject: [PATCH] remove gc alias to free it for other use --- dot_bash_aliases | 1 - dot_oh-my-zsh/custom/aliases.zsh | 1 - 2 files changed, 2 deletions(-) diff --git a/dot_bash_aliases b/dot_bash_aliases index b0a768c..be5a2ee 100644 --- a/dot_bash_aliases +++ b/dot_bash_aliases @@ -20,7 +20,6 @@ alias vimdiff="vim -d" alias g='git' alias gs='git status' alias ga='git add' -alias gc='git commit -S' alias gp='git push origin $(git rev-parse --verify --quiet main >/dev/null 2>&1 && echo main || echo master)' alias gpf='git push -u forgejo $(git rev-parse --verify --quiet main >/dev/null 2>&1 && echo main || echo master)' # alias gp='for r in $(git remote); do echo "Pushing to $r" && git push $r master; done' diff --git a/dot_oh-my-zsh/custom/aliases.zsh b/dot_oh-my-zsh/custom/aliases.zsh index e6c62e8..1314217 100644 --- a/dot_oh-my-zsh/custom/aliases.zsh +++ b/dot_oh-my-zsh/custom/aliases.zsh @@ -46,7 +46,6 @@ alias pmmm='python manage.py makemigrations' alias g='git' alias gs='git status' alias ga='git add' -alias gc='git commit -S' alias gp='git push origin master' alias gpf='git push -u forgejo master' alias gpull='git pull --rebase origin master'