9 lines
208 B
Bash
9 lines
208 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
cd /mnt/d/qipai
|
|
test "$(git rev-parse --show-toplevel)" = "/mnt/d/qipai"
|
|
test "$(git branch --show-current)" = "main"
|
|
git status --short --branch --untracked-files=all
|
|
|