-
Notifications
You must be signed in to change notification settings - Fork 46
/
clone-repos.sh
executable file
·50 lines (37 loc) · 1.26 KB
/
clone-repos.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/bin/bash
# Change this value your custom location
CLONE_PATH='projects'
function clone () {
# CD to folder where git repos are kept
cd $HOME/$CLONE_PATH
echo "Cloning repositories"
# Open source projects
git clone git@github.com:zellwk/mappy-breakpoints.git
git clone git@github.com:zellwk/typi.git
git clone git@github.com:zellwk/zl-fetch.git
git clone git@github.com:zellwk/css-reset.git
git clone git@github.com:zellwk/javascript.git
# Blog
git clone git@github.com:zellwk/zellwk.com.git
# Products
git clone git@github.com:zellwk/students.zellwk.com.git
# LJS
git clone git@github.com:zellwk/learnjavascript.today.git
git clone git@github.com:zellwk/Learnjavascript-api.git
git clone git@github.com:zellwk/jsf.git
git@github.com:zellwk/jsroadmap.com.git
# AYW
git clone git@github.com:zellwk/ayw.git ayw-website
git clone git@gitlab.com:zellwk/automating-your-workflow-book.git ayw-book
# MRT
git clone git@github.com:zellwk/mastering-responsive-typography.com.git
git clone git@github.com:zellwk/students.mastering-responsive-typography.com.git
# UAJS
git clone git@github.com:zellwk/uajs.git
# Essential CSS
git clone git@github.com:zellwk/ecss.git
# Demos
git clone git@github.com:zellwk/demos.git
}
clone
unset clone