Skip to content

Latest commit

 

History

History
executable file
·
21 lines (19 loc) · 650 Bytes

File metadata and controls

executable file
·
21 lines (19 loc) · 650 Bytes

Install After base-init

  1. Create SSH Keys Locally example
cd ~;
ssh-keygen -t rsa -C "<email address>";
  1. Run Installer Script
cd ~; git clone git@github.com:Laborate/new-developer.git; sudo bash new_developer/init.sh;
  1. 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>"