# 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.
