@@ -30,36 +30,36 @@ development.
3030
31311. Fork the `fullstackpython.github.com <https://github.com/makaimc/fullstackpython.github.com >`_ repo on GitHub.
3232
33- 1 . Clone your fork locally::
33+ 2 . Clone your fork locally::
3434
3535 $ git clone git@github.com:your_name_here/fullstackpython.github.com.git fsp
3636
37- 1 . Install your local copy into a virtualenv and set up your fork for local development::
37+ 3 . Install your local copy into a virtualenv and set up your fork for local development::
3838
3939 $ virtualenv --no-site-packages venvs/fsp
4040 $ source venvs/fsp/bin/activate
4141 $ cd fsp
4242
43- 1 . Install the requirements::
43+ 4 . Install the requirements::
4444
4545 $ pip install -r source/requirements.txt
4646
4747Note: make changes to the source/content/pages/\* .rst files then execute a
4848*make run * command from the source/ directory.
4949
50- 1 . Commit your changes and push your branch to GitHub::
50+ 5 . Commit your changes and push your branch to GitHub::
5151
5252 $ git add .
5353 $ git commit -m "Your detailed description of your changes."
5454 $ git push origin gh-pages
5555
56- 1 . Submit a pull request through the GitHub website.
56+ 6 . Submit a pull request through the GitHub website.
5757
58- 1 . To keep your fork in sync with the original repo, add an `upstream remote <https://help.github.com/articles/configuring-a-remote-for-a-fork/ >`_::
58+ 7 . To keep your fork in sync with the original repo, add an `upstream remote <https://help.github.com/articles/configuring-a-remote-for-a-fork/ >`_::
5959
6060 $ git remote add upstream git@github.com:makaimc/fullstackpython.com.git
6161
62- 1 . Sync your repo with the original repo::
62+ 8 . Sync your repo with the original repo::
6363
6464 $ git checkout master
6565 $ git fetch upstream
0 commit comments