SCD-Merge-Wizard
SCD-Merge-Wizard copied to clipboard
Add a Contributing.md
I happen to like what the Windows Terminal team does here - https://github.com/microsoft/terminal/blob/master/CONTRIBUTING.md#fork-clone-branch-and-create-your-pr
Fork, Clone, Branch and Create your PR Once you've discussed your proposed feature/fix/etc. with a team member, and you've agreed an approach or a spec has been written and approved, it's time to start development:
- Fork the repo if you haven't already
- Clone your fork locally
- Create & push a feature branch
- Create a Draft Pull Request (PR)
- Work on your changes
.. etc.
Also, answer the following question: How do I handle pulling down the code in the pull request to build and test locally, without actually completing the merge?
To fetch a remote PR into your local repo,
git fetch origin pull/ID/head:BRANCHNAME
where ID is the pull request id and BRANCHNAME is the name of the new branch that you want to create. Once you have created the branch, then simply
git checkout BRANCHNAME
Source: https://stackoverflow.com/questions/27567846/how-can-i-check-out-a-github-pull-request-with-git
@NowinskiK I'll create a draft PR and finishing fleshing this out. I'll have a little time this weekend.