$ git --version
git version 2.43.0
$ git config --global user.name "Kazeem"
$ git config --global user.email "[email protected]"
$ git clone <https://github.com/><username>/cicd-static-site.git
$ cd cicd-static-site
$ git status
$ git add.
$ git commit -m "Initial commit"
$ git push origin main
$ 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).
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