8000 Updated docs to refer to git by jarrodmillman · Pull Request #3 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Updated docs to refer to git #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
DOC - replaced mistaken reference to ipython with matplotlib
  • Loading branch information
jarrodmillman committed Feb 19, 2011
commit 7e55c11521d8af95de7bc6a42b68729b910c90d4
2 changes: 1 addition & 1 deletion doc/devel/gitwash/following_latest.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Get the local copy of the code

From the command line::

git clone git://github.com/ipython/matplotlib.git
git clone git://github.com/matplotlib/matplotlib.git

You now have a copy of the code tree in the new ``matplotlib`` directory.

Expand Down
4 changes: 2 additions & 2 deletions doc/devel/gitwash/patching.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Overview
git config --global user.email you@yourdomain.example.com
git config --global user.name "Your Name Comes Here"
# get the repository if you don't have it
git clone git://github.com/ipython/matplotlib.git
git clone git://github.com/matplotlib/matplotlib.git
# make a branch for your patching
cd matplotlib
git branch the-fix-im-thinking-of
Expand Down Expand Up @@ -59,7 +59,7 @@ In detail
#. If you don't already have one, clone a copy of the
matplotlib_ repository::

git clone git://github.com/ipython/matplotlib.git
git clone git://github.com/matplotlib/matplotlib.git
cd matplotlib

#. Make a 'feature branch'. This will be where you work on
Expand Down
8 changes: 4 additions & 4 deletions doc/devel/gitwash/set_up_fork.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Overview

git clone git@github.com:your-user-name/matplotlib.git
cd matplotlib
git remote add upstream git://github.com/ipython/matplotlib.git
git remote add upstream git://github.com/matplotlib/matplotlib.git

In detail
=========
Expand Down Expand Up @@ -46,7 +46,7 @@ Linking your repository to the upstream repo
::

cd matplotlib
git remote add upstream git://github.com/ipython/matplotlib.git
git remote add upstream git://github.com/matplotlib/matplotlib.git

``upstream`` here is just the arbitrary name we're using to refer to the
main matplotlib_ repository at `matplotlib github`_.
Expand All @@ -59,8 +59,8 @@ use it to merge into our own code.
Just for your own satisfaction, show yourself that you now have a new
'remote', with ``git remote -v show``, giving you something like::

upstream git://github.com/ipython/matplotlib.git (fetch)
upstream git://github.com/ipython/matplotlib.git (push)
upstream git://github.com/matplotlib/matplotlib.git (fetch)
upstream git://github.com/matplotlib/matplotlib.git (push)
origin git@github.com:your-user-name/matplotlib.git (fetch)
origin git@github.com:your-user-name/matplotlib.git (push)

Expand Down
2 changes: 1 addition & 1 deletion doc/devel/gitwash/this_project.inc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.. matplotlib
.. _matplotlib: http://matplotlib.sourceforge.net
.. _`matplotlib github`: http://github.com/ipython/matplotlib
.. _`matplotlib github`: http://github.com/matplotlib/matplotlib

.. _`matplotlib mailing list`: https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
0