Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1053448

Browse files
committed
Renamed readme file to something github understands much better, adjusted documentation links to point to github instead of lighthouse/gitorious
1 parent 90b20e5 commit 1053448

File tree

4 files changed

+17
-12
lines changed

4 files changed

+17
-12
lines changed

README renamed to README.rst

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ SOURCE
3434

3535
GitPython's git repo is available on GitHub, which can be browsed at:
3636

37-
http://github.com/Byron/GitPython
37+
https://github.com/gitpython-developers/GitPython
3838

3939
and cloned using:
4040

41-
git clone git://github.com/Byron/GitPython.git git-python
41+
git clone git://github.com/gitpython-developers/GitPython.git git-python
4242

4343

4444
DOCUMENTATION
@@ -53,7 +53,9 @@ http://groups.google.com/group/git-python
5353

5454
ISSUE TRACKER
5555
=============
56-
http://byronimo.lighthouseapp.com/projects/51787-gitpython/milestones
56+
Issues are tracked on github:
57+
58+
https://github.com/gitpython-developers/GitPython/issues
5759

5860
LICENSE
5961
=======

doc/source/intro.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -78,15 +78,13 @@ An organized section of the GitPthon API is at :ref:`api_reference_toplevel`.
7878
Source Code
7979
===========
8080

81-
GitPython's git repo is available on Gitorious and GitHub, which can be browsed at:
81+
GitPython's git repo is available on GitHub, which can be browsed at:
8282

83-
* http://gitorious.org/projects/git-python/
84-
* http://github.com/Byron/GitPython
83+
* https://github.com/gitpython-developers/GitPython
8584

8685
and cloned using::
8786

88-
$ git clone git://gitorious.org/git-python/mainline.git git-python
89-
$ git clone git://github.com/Byron/GitPython.git git-python
87+
$ git clone git://github.com/gitpython-developers/GitPython.git git-python
9088
9189
Initialize all submodules to obtain the required dependencies with::
9290
@@ -103,7 +101,9 @@ http://groups.google.com/group/git-python
103101

104102
Issue Tracker
105103
=============
106-
http://byronimo.lighthouseapp.com/projects/51787-gitpython/milestones
104+
The issue tracker is hosted by github:
105+
106+
https://github.com/gitpython-developers/GitPython/issues
107107

108108
License Information
109109
===================

doc/source/roadmap.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,8 @@
22
#######
33
Roadmap
44
#######
5-
The full list of milestones including associated tasks can be found on lighthouse: http://byronimo.lighthouseapp.com/projects/51787-gitpython/milestones
5+
The full list of milestones including associated tasks can be found on github:
6+
https://github.com/gitpython-developers/GitPython/issues
7+
8+
Select the respective milestone to filter the list of issues accordingly.
69

doc/source/tutorial.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ In the following brief example, you will learn about the very basics, assuming y
337337
338338
>>> repo = Repo('path/to/git-python/repository')
339339
>>> sms = repo.submodules
340-
[git.Submodule(name=gitdb, path=lib/git/ext/gitdb, url=git://gitorious.org/git-python/gitdb.git, branch=master)]
340+
[git.Submodule(name=gitdb, path=lib/git/ext/gitdb, url=git://github.com/gitpython-developers/GitPython.git, branch=master)]
341341
>>> sm = sms[0]
342342
>>> sm.name
343343
'gitdb'
@@ -354,7 +354,7 @@ In the following brief example, you will learn about the very basics, assuming y
354354
>>> sm.config_reader().get_value('path') == sm.path # read its configuration conveniently
355355
True
356356
>>> sm.children() # query the submodule hierarchy
357-
[git.Submodule(name=async, path=ext/async, url=git://gitorious.org/git-python/async.git, branch=master)]
357+
[git.Submodule(name=async, path=ext/async, url=git://github.com/gitpython-developers/async.git, branch=master)]
358358

359359
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(...)``>.
360360

0 commit comments

Comments
 (0)