wcz-layout
Version:
12 lines (9 loc) • 499 B
Markdown
# Git Setup
## Actions
1. Run `git remote -v`.
- **No remote exists** → ask for the repository URL, then run `git remote add origin <url>`.
- **Remote exists** → continue.
2. Run `git branch --show-current`.
- **Not `master`** → run `git branch -M master`.
- **Already `master`** → continue.
3. Run `npx vp config` to install the Git hooks (pre-commit checks + automatic version bump). It normally runs via the `prepare` script on install — running it again is a safe no-op.