public
Description: Python interface for talking to the github API
Clone URL: git://github.com/dustin/py-github.git
githubsync:  include info about ~/.github-private

Ideally, this should be part of the API, but I can't fix that end, so
I'll make due with what I've got...
dustin (author)
Mon May 19 01:35:08 -0700 2008
commit  c8f81c50830fa0c17fcba1a0ce3f331d5760ee95
tree    f3184dbf8118bf32013b7db909430a6948576c08
parent  b33933986e98298edb7a18c4bb381c54830fe12e
...
39
40
41
42
 
 
 
 
 
 
 
 
 
43
44
45
...
39
40
41
 
42
43
44
45
46
47
48
49
50
51
52
53
0
@@ -39,7 +39,15 @@ def sync_user_repo(path, user, repo):
0
 def usage():
0
     sys.stderr.write("Usage: %s username destination_url\n" % sys.argv[0])
0
     sys.stderr.write(
0
- " Ensures you've got the latest stuff for the given user.\n")
0
+ """Ensures you've got the latest stuff for the given user.
0
+
0
+Also, if the file $HOME/.github-private exists, it will be read for
0
+additional projects.
0
+
0
+Each line must be a simple project name (e.g. py-github), a tab character,
0
+and a git URL.
0
+"""
0
+ )
0
 
0
 if __name__ == '__main__':
0
     try:

Comments

    No one has commented yet.