3.1 Install & Verify Git

$ git --version
git version 2.43.0

3.2 Configure Git Identity

$ git config --global user.name "Kazeem"
$ git config --global user.email "[email protected]"

3.3 Create the GitHub Repository

3.4 Clone Repository Locally

$ git clone <https://github.com/><username>/cicd-static-site.git
$ cd cicd-static-site

3.5 Practice Core Git Loop

$ git status
$ git add.
$ git commit -m "Initial commit"
$ git push origin main

3.6 Branch → PR → Merge Workflow

$ git checkout -b test-branch
# made a small change
$ git add .
$ git commit -m "Test branch commit"
$ git push origin test-branch

Opened a Pull Request on GitHub from test-branch into main, reviewed the diff, and merged it. This mirrors the workflow the CI/CD pipeline will trigger on later (Day 7-10).

3.7 Screenshots

Problems Output Debug Console Terminal Ports pov
PS C:\Users\USER\vscode\cicd-static-site> git --version
git version 2.53.0.windows.1
PS C:\Users\USER\vscode\cicd-static-site>

Merged Pull Request

3.8 Checkpoint Summary