From d2ce20624346d2dbc300b6ba2c2f3d074acda53b Mon Sep 17 00:00:00 2001 From: rene Date: Sat, 14 Mar 2026 08:29:52 +0100 Subject: [PATCH] gitsync Alias in .zshrc ergaenzt --- setup-desktop.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup-desktop.sh b/setup-desktop.sh index 5759371..dc6eedb 100755 --- a/setup-desktop.sh +++ b/setup-desktop.sh @@ -129,7 +129,7 @@ if [[ -d "$DOTFILES_DIR/bin" ]]; then for script in "$DOTFILES_DIR/bin"/*; do [[ -f "$script" ]] && chmod +x "$script" && ln -sf "$script" ~/ 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 # .zshrc (Linux-Version, ohne Conda/LM Studio/iTerm2) @@ -192,6 +192,7 @@ alias gp='git push' alias gl='git log --oneline --graph --decorate' alias gitcheck="~/git-check-all.sh --short" alias gitupdate="~/git-update-all.sh" +alias gitsync="~/git-sync-all.sh" # 7) History HISTFILE="$HOME/.zsh_history"