-
Do you have an Github account ? If not create one.
-
Install required tools
-
Latest Git Client
-
gpg tools
# Ubuntu
sudo apt-get install gpa seahorse
#!/bin/sh | |
ENV_PATH_SEPARATOR=${ENV_PATH_SEPARATOR:-':'} | |
oldIFS=$IFS | |
IFS=$ENV_PATH_SEPARATOR | |
for ENV_FILE in $ENV_PATH; do | |
if [ -f "$ENV_FILE" ]; then | |
export $(grep -v '^#' "$ENV_FILE" | xargs -0) | |
else |
#!/bin/bash | |
script_name=`basename "$0"` | |
text_bold=$(tput bold) | |
text_normal=$(tput sgr0) | |
showHelp() { | |
echo -e "${script_name} | |
${text_bold}DESCRIPTION${text_normal} |
Do you have an Github account ? If not create one.
Install required tools
Latest Git Client
gpg tools
# Ubuntu
sudo apt-get install gpa seahorse
# Ubuntu
sudo apt-get install gpa seahorse
# MacOS with https://brew.sh/
Prereq:
apt-get install zsh
apt-get install git-core
Getting zsh to work in ubuntu is weird, since sh
does not understand the source
command. So, you do this to install zsh
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh