If you want to contribute to someone else’s project but don’t have write access to the repository, you can use a “fork and pull request” workflow.

GitHub flow is a lightweight, branch-based workflow. The GitHub flow is useful for everyone, not just developers. The GitHub documentation has a good overview of the process and the reasons for using it. See GitHub flow.

In this lab, you will pair up with another student to practice the GitHub flow.

  1. Fork and clone their repository.
  2. Create a new branch.
  3. Add a new file to the repository.
  4. Commit the changes.
  5. Push the changes to your fork.
  6. Submit a pull request to the original repository.

GitHub workflow

The steps shown in red are a one-time action for each new repository you fork.

StepsDescription of stepsGit command / GitHub actions
AFork the repoBrowse to https://github.com/<thierusername>/GitFun and select the Fork button (top right). Open the Choose and owner dropdown and select your personal account. Select the Create fork button.
BClone the repo (once per machine)git clone https://github.com/<myusername>/GitFun.git
CAdd the upstream remotegit remote add upstream https://github.com/<theirusername>/GitFun.git

Alternatively, you can use the GitHub CLI to clone the repository. See Appendix - GitHub CLI commands.

The numbered steps (in black) are described in the table below.

StepsDescription of stepsGit command / GitHub actions
0Checkout the main branchgit checkout main
1Sync the main branchgit pull upstream main; git push origin main
2Create a new working branchgit checkout -b my-new-branch
3Create new contentUse VS Code to create or edit files
4Add changes for Git trackinggit add -A
5Commit changes to local repogit commit -m 'commit message'
6Push working branch to forkgit push origin my-new-branch
7Submit pull requestGo to https://github.com/<thierusername>/GitFun/pulls and click the New pull request button.Base repository: MicrosoftDocs/PowerShell-Docs base: main <– head repository: username/PowerShell-Docs compare: my-new-branch Fill out the pull request description and click Submit.
8PR is reviewedMake the necessary changes based on the review feedback.
9PR is mergedGo to step 10
10Cleanup unneeded branch infogit checkout main; git push origin --delete my-new-branch; git branch -D my-new-branchThe git push command deletes the branch in your fork and deletes the tracking branch from your local repo. The git branch command deletes the branch from your local repo.
11Start new changeGo to step 0