forked from pathikrit/mac-setup-script
-
Notifications
You must be signed in to change notification settings - Fork 1
/
git_setup.sh
executable file
·57 lines (48 loc) · 2.13 KB
/
git_setup.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
51
52
53
54
55
56
57
#!/usr/bin/env bash
# Download and setup all repos needed for development
ROOT=~/dev
mkdir $ROOT
cd $ROOT
# Peasy & related repos
git clone --single-branch --branch master [email protected]:pal/peasy.git peasy-master
git clone --single-branch --branch planetscale [email protected]:pal/peasy.git peasy
git clone [email protected]:pal/frankfurter.git
git clone [email protected]:pal/peasy_client.git
git clone [email protected]:pal/subtree-apple-certs.git
git clone [email protected]:subtree/peasy-api-docs.git
# git clone [email protected]:pal/peasy-intranet.git
# git clone [email protected]:pal/peasy-utils.git
# git clone [email protected]:pal/peasy_backoffice.git
# git clone [email protected]:pal/peasy_backoffice_basic.git
# git clone [email protected]:pal/peasy_mobile.git
# git clone [email protected]:pal/subtree-backoffice.git
# git clone https://github.com/flutter/flutter.git
# Other Subtree repos
git clone [email protected]:pal/auth-astro.git
git clone [email protected]:pal/auth-astro-sqlite.git
git clone [email protected]:pal/sample-names-for-services.git
git clone [email protected]:poqoi/backend.poqoi.com.git
git clone [email protected]:poqoi/poqoi.com.git
git clone [email protected]:poqoi/public-api.git
git clone [email protected]:subtree/jujino.git
git clone [email protected]:subtree/koppla.com.git
# Other repos
git clone [email protected]:pal/mac-setup-script.git
git clone [email protected]:pal/fler-policies.git
git clone [email protected]:pal/leetcode.git
git clone [email protected]:pal/palbrattberg.com.git
git clone [email protected]:pal/skylead-reporter.git
# git clone [email protected]:exchangeratesapi/exchangeratesapi.git
# git clone [email protected]:pal/Paw-DigestAuthDynamicValue.git
# git clone [email protected]:pal/datalib.git
# git clone [email protected]:pal/duris.git
# git clone [email protected]:pal/in-memory-analytics.git
# git clone [email protected]:pal/julafton.com.git
# git clone [email protected]:pal/orders-in-mysql.git
# git clone [email protected]:pal/playbook-template.git
# git clone [email protected]:pal/simple-counter-server.git
sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
sudo xcodebuild -runFirstLaunch
# flutter precache
# flutter doctor
echo "All done, hack away! 👨💻"