Fetches a bunch of git repositories continuously
$ rake install
gitfetcher ~/src/repo1 ~/src/repo2
I use the following alias and run it from my home directory in a detached screen session:
alias cgits='find . -maxdepth 3 -name ".gitfetch" | sed -e "s/.gitfetch$//" | xargs gitfetcher'
When I have a new directory I want to keep up to date, I just touch a .gitfetch file in it's git root
- Fork it ( https://github.com/[my-github-username]/gitfetcher/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request