mirror of
https://gitea.zaclys.com/yannic/dotfiles.git
synced 2026-05-23 19:37:28 +02:00
9 lines
293 B
Bash
9 lines
293 B
Bash
#!/usr/bin/env zsh
|
|
# Is this directory inside a git repo?
|
|
if git rev-parse --is-inside-work-tree >/dev/null 2>&1; then
|
|
# Are we at the repo root? (prefix empty = root)
|
|
if [ -z "$(git rev-parse --show-prefix)" ]; then
|
|
echo "Fetching latest changes from remote..."
|
|
git fetch
|
|
fi
|
|
fi |