summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-11-21 20:54:04 +0100
committerxengineering <me@xengineering.eu>2024-11-21 20:55:08 +0100
commit7ad00b25824f507cb0e536bd39676b5d79cc520b (patch)
treec52133043d2bb2717bbd1c3905889e975ee74838
parent2c6141abab24480f9cd40ab80a28209865c5752e (diff)
downloaddotfiles-7ad00b25824f507cb0e536bd39676b5d79cc520b.tar
dotfiles-7ad00b25824f507cb0e536bd39676b5d79cc520b.tar.zst
dotfiles-7ad00b25824f507cb0e536bd39676b5d79cc520b.zip
posix-shell: Remove `--all` from `igit` alias
This allows to select either all branches to display with `igit --all` or a subset of branches with `igit branch1 branch2 ...`. With this change it is possible to get a better overview in repositories with a huge number of branches.
-rw-r--r--posix-shell/aliases.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/posix-shell/aliases.sh b/posix-shell/aliases.sh
index 4f9e53e..cb7eb80 100644
--- a/posix-shell/aliases.sh
+++ b/posix-shell/aliases.sh
@@ -7,7 +7,7 @@ alias la='ls -A'
alias l='ls -CF'
alias ip='ip --color=auto'
alias gitstat='git status'
-alias igit='git log --all --oneline --decorate --graph'
+alias igit='git log --oneline --decorate --graph'
alias horizons='telnet horizons.jpl.nasa.gov 6775' # a NASA server providing data about planet positions and velocities
alias wlrecord='wf-recorder -a -g "$(slurp)"'
alias ranger='ranger --choosedir=$HOME/.local/share/ranger/lastdir && cd "$(cat $HOME/.local/share/ranger/lastdir)"'