Skip to content

Commit 1600618

Browse files
committed
updates to contrinuting guide - added info about upstream
1 parent 78d1767 commit 1600618

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

CONTRIBUTING.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ Get Started!
2525
If you're not familiar with `Pelican <http://docs.getpelican.com/>`_, check out the blog post on
2626
`Getting Started with Pelican and GitHub Pages <http://www.mattmakai.com/introduction-to-pelican.html>`_.
2727

28-
Ready to contribute? Here's how to set up Full Stack Python for local
29-
development.
28+
**Ready to contribute? Here's how to set up Full Stack Python for local development.**
3029

3130
1. Fork the `fullstackpython.github.com <https://github.com/makaimc/fullstackpython.github.com>`_ repo on GitHub.
3231

@@ -55,6 +54,8 @@ Note: make changes to the source/content/pages/\*.rst files then execute a
5554

5655
6. Submit a pull request through the GitHub website.
5756

57+
**Keep your fork in Sync**
58+
5859
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/>`_::
5960

6061
$ git remote add upstream git@github.com:makaimc/fullstackpython.com.git
@@ -63,5 +64,4 @@ Note: make changes to the source/content/pages/\*.rst files then execute a
6364

6465
$ git checkout master
6566
$ git fetch upstream
66-
$ git merge upstream/master
67-
67+
$ git merge upstream/master

feeds/all.atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2015-06-16T11:12:33Z</updated></feed>
2+
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2015-06-16T11:17:59Z</updated></feed>

source/static-html/CONTRIBUTING.rst

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -25,43 +25,43 @@ Get Started!
2525
If you're not familiar with `Pelican <http://docs.getpelican.com/>`_, check out the blog post on
2626
`Getting Started with Pelican and GitHub Pages <http://www.mattmakai.com/introduction-to-pelican.html>`_.
2727

28-
Ready to contribute? Here's how to set up Full Stack Python for local
29-
development.
28+
**Ready to contribute? Here's how to set up Full Stack Python for local development.**
3029

3130
1. Fork the `fullstackpython.github.com <https://github.com/makaimc/fullstackpython.github.com>`_ repo on GitHub.
3231

33-
1. Clone your fork locally::
32+
2. Clone your fork locally::
3433

3534
$ git clone git@github.com:your_name_here/fullstackpython.github.com.git fsp
3635

37-
1. Install your local copy into a virtualenv and set up your fork for local development::
36+
3. Install your local copy into a virtualenv and set up your fork for local development::
3837

3938
$ virtualenv --no-site-packages venvs/fsp
4039
$ source venvs/fsp/bin/activate
4140
$ cd fsp
4241

43-
1. Install the requirements::
42+
4. Install the requirements::
4443

4544
$ pip install -r source/requirements.txt
4645

4746
Note: make changes to the source/content/pages/\*.rst files then execute a
4847
*make run* command from the source/ directory.
4948

50-
1. Commit your changes and push your branch to GitHub::
49+
5. Commit your changes and push your branch to GitHub::
5150

5251
$ git add .
5352
$ git commit -m "Your detailed description of your changes."
5453
$ git push origin gh-pages
5554

56-
1. Submit a pull request through the GitHub website.
55+
6. Submit a pull request through the GitHub website.
5756

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/>`_::
57+
**Keep your fork in Sync**
58+
59+
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/>`_::
5960

6061
$ git remote add upstream git@github.com:makaimc/fullstackpython.com.git
6162

62-
1. Sync your repo with the original repo::
63+
8. Sync your repo with the original repo::
6364

6465
$ git checkout master
6566
$ git fetch upstream
66-
$ git merge upstream/master
67-
67+
$ git merge upstream/master

0 commit comments

Comments
 (0)