aboutsummaryrefslogtreecommitdiffstats
path: root/git/bash-aliases
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2023-11-25 18:08:34 +0100
committerMattias Andrée <maandree@kth.se>2023-11-25 18:08:34 +0100
commit5b7e0db847c46affc207c327835d1efd3b2727de (patch)
tree764855cde8a304641a359e907157dc0525ff8a20 /git/bash-aliases
parentUpdate dmenu to use different fonts (primary size due to different DPI, distance, and screen size) on different computers (diff)
downloaddotfiles-5b7e0db847c46affc207c327835d1efd3b2727de.tar.gz
dotfiles-5b7e0db847c46affc207c327835d1efd3b2727de.tar.bz2
dotfiles-5b7e0db847c46affc207c327835d1efd3b2727de.tar.xz
Misc updates
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r--git/bash-aliases9
1 files changed, 0 insertions, 9 deletions
diff --git a/git/bash-aliases b/git/bash-aliases
index 3552668..3b19a26 100644
--- a/git/bash-aliases
+++ b/git/bash-aliases
@@ -7,15 +7,6 @@ gitcomm () {
git commit --signoff -S"$GPG_KEY" -m "$*"
}
-ge () {
- if [ -z "$EDITOR" ]; then
- printf '\e[1;31m%s\e[0m\n' 'No default editor is set, please configure the environment variable EDITOR'
- else
- $EDITOR -- "$@"
- git add -- "$@"
- fi
-}
-
gitpush () {
git push -u origin `___git_branch_`
}