Install After base-init
- Create SSH Keys Locally example
cd ~;
ssh-keygen -t rsa -C "<email address>";
- Run Installer Script
cd ~; git clone [email protected]:Laborate/new-developer.git; sudo bash new_developer/init.sh;
- OPTIONAL: Change Default Editor & Diff Tool
# Currently it is set to VIM
git config --global core.editor "<editor>"
git config --global merge.tool "<editor_diff>"
export VISUAL="<editor>"
export EDITOR="<editor>"