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
commit89831c4dd0368fb9a8dac6b9d73dd5586d0174e7 (patch)
treec52133043d2bb2717bbd1c3905889e975ee74838
parent00c906c49ec68b4048c64fcf553e5f1f5fc5c5db (diff)
downloaddotfiles-89831c4dd0368fb9a8dac6b9d73dd5586d0174e7.tar
dotfiles-89831c4dd0368fb9a8dac6b9d73dd5586d0174e7.tar.zst
dotfiles-89831c4dd0368fb9a8dac6b9d73dd5586d0174e7.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)"'