The first step is to fork the Learn repository so you have a forked repository that you can control.
What you'll do:
- install the
gh
CLI - fork the repo
- clone your fork
- connect to the upstream (the official Learn repo)
- make your own branch
Steps:
-
Fork https://github.com/MicrosoftDocs/learn-pr and clone it to your computer (this is your origin)
gh repo fork MicrosoftDocs/learn-pr --clone
-
Change your directory to your local folder
cd learn-pr
-
Connect to official learn-pr repo (this is your "upstream")
git remote add upstream [email protected]:MicrosoftDocs/learn-pr.git
-
Run
git remote -v
and make sure your remote looks like this# origin [email protected]:johnpapa/learn-pr (fetch) # origin [email protected]:johnpapa/learn-pr (push) # upstream [email protected]:MicrosoftDocs/learn-pr.git (fetch) # upstream [email protected]:MicrosoftDocs/learn-pr.git (push)
-
Make your own branch
git checkout -b YOUR-LEARN-MODULE-BRANCH
You will want to create a Pull Request from your fork repository and the branch you created, against the official Learn repository's master branch.
What you'll do:
- Create the pull request
Steps:
-
Checkout and Push your changes to your fork
git checkout YOUR-LEARN-MODULE-BRANCH git push
-
Create a pull request from your branch to MicrosoftDocs/master using the
gh
CLIgh pr create -f
Seems obvious to us now but you might want to add the fact you must Push your changes before you can create a pull request.