From 330dcbb9965577f2381ebfdaa27639fad3109814 Mon Sep 17 00:00:00 2001 From: John Burnett Date: Tue, 3 Jan 2012 18:35:46 -0800 Subject: [PATCH] Updating docs to point to git/GitHub rather than hg/BitBucket. --- doc/contributing.rst | 26 +++++++++----------------- doc/developing.rst | 17 ++++++----------- 2 files changed, 15 insertions(+), 28 deletions(-) diff --git a/doc/contributing.rst b/doc/contributing.rst index 1a74ca80..ac96fcbe 100644 --- a/doc/contributing.rst +++ b/doc/contributing.rst @@ -2,26 +2,19 @@ Contributing to nose ==================== You'd like to contribute to nose? Great! Now that nose is hosted under -`Mercurial `__, contributing is even easier. +`GitHub `__, contributing is even easier. Get the code! ------------- -Start by getting a local working copy of nose, either stable, from google code:: +Start by getting a local working copy of nose from github:: - hg clone http://python-nose.googlecode.com/hg/ nose-stable - -or unstable, from bitbucket:: - - hg clone http://bitbucket.org/jpellerin/nose/ nose-unstable + git clone https://github.com/nose-devs/nose If you plan to submit changes back to the core repository, you should set up a -public repository of your own somewhere. `Bitbucket `__ -is a good place to do that. Once you've set up your bitbucket nose repository, -if working from **stable**, pull from your working copy of nose-stable, and push -to bitbucket. That (with occasional merging) will be your normal practice for -keeping your repository up to date. If you're on bitbucket and working from -**unstable**, just **fork** http://bitbucket.org/jpellerin/nose/. +public fork of your own somewhere (`GitHub `__ is a good +place to do that). See GitHub's `help `__ for details +on how to contribute to a Git hosted project like nose. Running nose's tests -------------------- @@ -42,11 +35,10 @@ low-traffic and mostly signal. What to work on? ---------------- -You can find a list of open issues at nose's `google code repository -`__. If you'd like to +You can find a list of open issues at nose's `issue tracker +`__. If you'd like to work on an issue, leave a comment on the issue detailing how you plan -to fix it, and where to find the Mercurial repository where you will -publish your changes. +to fix it, or simply submit a pull request. I have a great idea for a plugin... ----------------------------------- diff --git a/doc/developing.rst b/doc/developing.rst index 3302ddf3..32c56806 100644 --- a/doc/developing.rst +++ b/doc/developing.rst @@ -4,19 +4,14 @@ Developing with nose Get the code ------------ -The stable branch of nose is hosted at `google code -`__. You should clone this -branch if you're developing a plugin or working on bug fixes for nose:: +nose is hosted at `GitHub +`__. You should clone this +repository if you're developing a plugin or working on bug fixes for nose:: - hg clone http://python-nose.googlecode.com/hg/ nose-stable + git clone https://github.com/nose-devs/nose -The **unstable** branch of nose is hosted at `bitbucket -`__. You should **fork** this branch if -you are developing new features for nose. Then clone your fork, and submit -your changes as a pull request. If you just want to use unstable, you can -clone the branch:: - - hg clone http://bitbucket.org/jpellerin/nose/ nose-unstable +You should **fork** this repository if you are developing new features for +nose. Then submit your changes as a pull request. Read