Hacker News new | past | comments | ask | show | jobs | submit login
Show HN: Clone all of your GitHub repos at once (github.com/jsnider3)
6 points by jsnider3 on Oct 3, 2015 | hide | past | favorite | 15 comments



This was just a quick tool I made so that I could setup my stuff on a new computer quickly. Hopefully someone else finds it useful.


It's nice! I'm setting up a new Linux install on my workstation, and I found this really useful.


Thanks, that is literally the situation this was made for.


This looks nice, but I typically use something like this:

    curl https://api.github.com/users/[username]/repos | jq .[].clone_url | xargs -n 1 git clone
Only works for public repos though.


That's clever and is the first time I encountered jq, so thanks for introducing me to something new.

Personally, I prefer python solutions to shell solutions, since its easier to maintain / add features.


Good solution! You can use this for orgs as well, just curl

  https://api.github.com/orgs/[orgname]/repos
instead.


Anyone have suggestions for other features I could add?


It would be cool to add custom locations for project types, for example cloning any Go repositories to $GOPATH/src/github.com/user/.

I usually lay out my directories putting everything under ~/git/, and then I'll have ~/git/js, ~/git/c, ~/git/python, and so on.


This is possible to do, GitHub's API provides access to the language breakdown of a given repository.

It could probably be done through some kind of ruleset file we go through that maps conditions to directories. I'll think about it, but I'm not sure there's enough demand. If you do this in fork, I'd be willing to take it.


Thinking about it some more, this sounds like a good idea. I'll add it to version 2.


Is it possible to use a personal access token in place of a password with this tool in its present state?


Currently, it only does username / password, but PyGithub supports OAuth tokens, so it should be 2-3 lines.

Edit: It now supports tokens supplied with a "--token" argument.


2 I can think of:

  * work with orgs 
  * pull if clone already exists


If you give me a couple minutes I'll add a git pull option.

Getting a user's organization repos is something I will also add to the queue.

Edit: We now run a git pull in repos by default and it can be disabled with a "--nopull" argument.


I added some tentative code to clone org repos, but I haven't been able to test it since I'm not a member of any organizations.




Join us for AI Startup School this June 16-17 in San Francisco!

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: