Git on Gitlab basicCommand line instructions Posted on October 2, 2015 by phong Git global setup git config --global user.name "cadena" git config --global user.email "phong@cadena-it.com" Create a new repository git clone git@subin.cadena-it.com:root/BUN01.git cd BUN01 touch README.md git add README.md git commit -m "add README" git push -u origin master Existing folder or Git repository cd existing_folder git init git remote add origin git@subin.cadena-it.com:root/BUN01.git git add . git commit git push -u origin master Written by phong View all author posts → View Larger Map