gitsync Alias in .zshrc ergaenzt

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
rene 2026-03-14 08:29:52 +01:00
parent fa40de7429
commit 1e04028342

View file

@ -129,7 +129,7 @@ if [[ -d "$DOTFILES_DIR/bin" ]]; then
for script in "$DOTFILES_DIR/bin"/*; do for script in "$DOTFILES_DIR/bin"/*; do
[[ -f "$script" ]] && chmod +x "$script" && ln -sf "$script" ~/ [[ -f "$script" ]] && chmod +x "$script" && ln -sf "$script" ~/
done done
ok "Dot-Files: git-check-all.sh, git-update-all.sh → ~/" ok "Dot-Files: git-check-all.sh, git-update-all.sh, git-sync-all.sh → ~/"
fi fi
# .zshrc (Linux-Version, ohne Conda/LM Studio/iTerm2) # .zshrc (Linux-Version, ohne Conda/LM Studio/iTerm2)
@ -192,6 +192,7 @@ alias gp='git push'
alias gl='git log --oneline --graph --decorate' alias gl='git log --oneline --graph --decorate'
alias gitcheck="~/git-check-all.sh --short" alias gitcheck="~/git-check-all.sh --short"
alias gitupdate="~/git-update-all.sh" alias gitupdate="~/git-update-all.sh"
alias gitsync="~/git-sync-all.sh"
# 7) History # 7) History
HISTFILE="$HOME/.zsh_history" HISTFILE="$HOME/.zsh_history"