-
Notifications
You must be signed in to change notification settings - Fork 224
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add section on forking for contributing.md (#678)
* add section on forking for contributing.md * fix cap
- Loading branch information
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,19 @@ This document will guide you through the process. | |
Please visit [https://cla.microsoft.com/](https://cla.microsoft.com/) and sign the Contributor License | ||
Agreement. You only need to do that once. We can not look at your code until you've submitted this request. | ||
|
||
## Fork | ||
|
||
Fork the project [on GitHub](https://github.com/AzureAD/microsoft-identity-web) and check out | ||
your copy. | ||
|
||
Example for Microsoft Identity Web: | ||
|
||
``` | ||
$ git clone [email protected]:username/microsoft-identity-web.git | ||
$ cd microsoft-identity-web | ||
$ git remote add upstream [email protected]:AzureAD/microsoft-identity-web.git | ||
``` | ||
|
||
## Setup, Building and Testing | ||
|
||
Please see the [Build & Run](https://github.com/AzureAD/microsoft-identity-web/wiki/build-and-test) wiki page. | ||
|