9 lines
No EOL
293 B
Bash
9 lines
No EOL
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 |