-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jesse McBride
authored
May 15, 2018
1 parent
a8f802f
commit ba4b3ca
Showing
1 changed file
with
1 addition
and
1 deletion.
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 |
---|---|---|
|
@@ -61,7 +61,7 @@ Once you've found an issue you're interested in tackling, take a look at our [fi | |
Now that you've selected an issue to work on, you'll need to set up an environment for writing code. We'll assume you already have pip, virtualenv, and git installed and are using a terminal. If not, please set those up before continuing. | ||
|
||
1. Clone our repository by executing `git clone [email protected]:ucfopen/canvasapi.git` | ||
2. Pull the latest commit from the **develop** branch: `git pull origin develop` | ||
2. Checkout (`git checkout develop`) and then pull the latest commit from the develop branch: `git pull origin develop` | ||
3. Create a new branch with the format **issue/[issue_number]-[issue-title]**: `git checkout -b issue/1-test-issue-for-documentation` | ||
4. Set up a new virtual environment ( `virtualenv env` ) and activate it (`source env/bin/activate`) | ||
5. Install the required dependencies with `pip install -r dev_requirements.txt` | ||
|