-
Notifications
You must be signed in to change notification settings - Fork 0
/
git-project-dir-setup.sh
44 lines (38 loc) · 1.41 KB
/
git-project-dir-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
#!/bin/bash
# Create the git project setup directories to checkout projects
/usr/bin/sudo mkdir ~/workspace/
/usr/bin/sudo mkdir ~/workspace/public_repos/
cd ~/workspace/public_repos/
###############################################
# ADD POWERLINE FONTS
# https://github.com/powerline/fonts
###############################################
git clone https://github.com/powerline/fonts
./fonts/install.sh
###############################################
# Metrics: Prometheus & AlertManager
# https://prometheus.io
# https://github.com/prometheus/alertmanager/issues/437
###############################################
git clone [email protected]:prometheus/prometheus.git
git clone [email protected]:prometheus/alertmanager.git
##############################################
# Kubernetes
##############################################
git clone [email protected]:kubernetes/kubernetes.git
##############################################
# SCM_BREEZE
##############################################
git clone [email protected]:scmbreeze/scm_breeze.git
./scm_breeze/install.sh
###############################################
# Tmux - https://github.com/tmux/tmux
# https://github.com/tmuxinator/tmuxinator
# https://tmuxcheatsheet.com/
# https://gist.github.com/andreyvit/2921703
###############################################
echo "Cloning tmux from github"
git clone https://github.com/tmux/tmux.git
cd tmux && sh autogen.sh
./configure && make
cd ../