forked from lucyhufton/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitrepos.sh
16 lines (12 loc) · 857 Bytes
/
.gitrepos.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Clone git repos
# iTerm colour schemes
# {iterm2colorschemes.com}
git clone https://github.com/mbadolato/iTerm2-Color-Schemes ~/iTerm2-Color-Schemes
# Sublime JS snippets > into Sublime packages directory
git clone https://github.com/furzeface/JS-Snippets ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/User/
# Sublime CSS snippets > into Sublime packages directory
# {http://joshnh.com/2012/02/03/a-collection-of-css-snippets-for-sublime-text-2}
git clone https://github.com/joshnh/CSS-Snippets ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/User/
# My repos - change username to yours if you don’t want my stuff!
cd ~/Sites/GitHub # Change to your repos directory
curl -s "https://api.github.com/users/furzeface/repos" | ruby -rubygems -e 'require "json"; JSON.load(STDIN.read).each {|repo| %x[git clone #{repo["ssh_url"]} ]}'