summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2010-11-30 21:29:08 +0100
committerSebastian Thiel <byronimo@gmail.com>2010-11-30 21:29:08 +0100
commit1053448ad885c633af9805a750d6187d19efaa6c (patch)
tree7682750b3812b2c96d5d8873c9d83251e417e1ff
parent90b20e5cd9ba8b679a488efedb1eb1983e848acf (diff)
downloadgitpython-1053448ad885c633af9805a750d6187d19efaa6c.tar.gz
Renamed readme file to something github understands much better, adjusted documentation links to point to github instead of lighthouse/gitorious
-rw-r--r--README.rst (renamed from README)8
-rw-r--r--doc/source/intro.rst12
-rw-r--r--doc/source/roadmap.rst5
-rw-r--r--doc/source/tutorial.rst4
4 files changed, 17 insertions, 12 deletions
diff --git a/README b/README.rst
index e0f2947d..0e50b50b 100644
--- a/README
+++ b/README.rst
@@ -34,11 +34,11 @@ SOURCE
GitPython's git repo is available on GitHub, which can be browsed at:
-http://github.com/Byron/GitPython
+https://github.com/gitpython-developers/GitPython
and cloned using:
-git clone git://github.com/Byron/GitPython.git git-python
+git clone git://github.com/gitpython-developers/GitPython.git git-python
DOCUMENTATION
@@ -53,7 +53,9 @@ http://groups.google.com/group/git-python
ISSUE TRACKER
=============
-http://byronimo.lighthouseapp.com/projects/51787-gitpython/milestones
+Issues are tracked on github:
+
+https://github.com/gitpython-developers/GitPython/issues
LICENSE
=======
diff --git a/doc/source/intro.rst b/doc/source/intro.rst
index c96766fb..520cf159 100644
--- a/doc/source/intro.rst
+++ b/doc/source/intro.rst
@@ -78,15 +78,13 @@ An organized section of the GitPthon API is at :ref:`api_reference_toplevel`.
Source Code
===========
-GitPython's git repo is available on Gitorious and GitHub, which can be browsed at:
+GitPython's git repo is available on GitHub, which can be browsed at:
- * http://gitorious.org/projects/git-python/
- * http://github.com/Byron/GitPython
+ * https://github.com/gitpython-developers/GitPython
and cloned using::
- $ git clone git://gitorious.org/git-python/mainline.git git-python
- $ git clone git://github.com/Byron/GitPython.git git-python
+ $ git clone git://github.com/gitpython-developers/GitPython.git git-python
Initialize all submodules to obtain the required dependencies with::
@@ -103,7 +101,9 @@ http://groups.google.com/group/git-python
Issue Tracker
=============
-http://byronimo.lighthouseapp.com/projects/51787-gitpython/milestones
+The issue tracker is hosted by github:
+
+https://github.com/gitpython-developers/GitPython/issues
License Information
===================
diff --git a/doc/source/roadmap.rst b/doc/source/roadmap.rst
index a6bdc3a0..f93d5e65 100644
--- a/doc/source/roadmap.rst
+++ b/doc/source/roadmap.rst
@@ -2,5 +2,8 @@
#######
Roadmap
#######
-The full list of milestones including associated tasks can be found on lighthouse: http://byronimo.lighthouseapp.com/projects/51787-gitpython/milestones
+The full list of milestones including associated tasks can be found on github:
+https://github.com/gitpython-developers/GitPython/issues
+
+Select the respective milestone to filter the list of issues accordingly.
diff --git a/doc/source/tutorial.rst b/doc/source/tutorial.rst
index 642136ab..5530cedd 100644
--- a/doc/source/tutorial.rst
+++ b/doc/source/tutorial.rst
@@ -337,7 +337,7 @@ In the following brief example, you will learn about the very basics, assuming y
>>> repo = Repo('path/to/git-python/repository')
>>> sms = repo.submodules
- [git.Submodule(name=gitdb, path=lib/git/ext/gitdb, url=git://gitorious.org/git-python/gitdb.git, branch=master)]
+ [git.Submodule(name=gitdb, path=lib/git/ext/gitdb, url=git://github.com/gitpython-developers/GitPython.git, branch=master)]
>>> sm = sms[0]
>>> sm.name
'gitdb'
@@ -354,7 +354,7 @@ In the following brief example, you will learn about the very basics, assuming y
>>> sm.config_reader().get_value('path') == sm.path # read its configuration conveniently
True
>>> sm.children() # query the submodule hierarchy
- [git.Submodule(name=async, path=ext/async, url=git://gitorious.org/git-python/async.git, branch=master)]
+ [git.Submodule(name=async, path=ext/async, url=git://github.com/gitpython-developers/async.git, branch=master)]
In addition to the query functionality, you can move the submodule's repository to a different path <``move(...)``>, write its configuration <``config_writer().set_value(...)``>, update its working tree <``update(...)``>, and remove and add them <``remove(...)``, ``add(...)``>.