-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add explicit callout to fork then clone
- Loading branch information
Andy Moon
committed
Jun 24, 2024
1 parent
e703a6c
commit 421157f
Showing
1 changed file
with
5 additions
and
4 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 |
---|---|---|
|
@@ -42,18 +42,19 @@ The basic requirements for developing this library are: | |
|
||
We recommend using an IDE such as [VS Code](https://code.visualstudio.com/) or [PyCharm](https://www.jetbrains.com/pycharm/). | ||
|
||
### Clone git repository | ||
### Fork and clone git repository | ||
Fork the public repo and create your branch (e.g. `feat/`, `doc/`, etc.) from the default branch. Synchronize your forked repo/branch with the upstream occasionally. | ||
|
||
Clone a local version of the library using HTTPS: | ||
Clone your fork using HTTPS: | ||
|
||
``` | ||
git clone https://github.com/BCG-X-Official/artkit.git | ||
git clone https://github.com/<username>/artkit.git | ||
``` | ||
|
||
or SSH: | ||
|
||
``` | ||
git clone [email protected]:BCG-X-Official/artkit.git | ||
git clone [email protected]:<username>/artkit.git | ||
``` | ||
|
||
### Configure environment variables | ||
|