Speaktech.in

create a new repo in gitlab

Command line instructions

Git global setup
git config --global user.name "Preneesh AV"git config --global user.email "preneesh@company.com"
Create a new repository
git clone https://git.company.com/root/ebctvm.gitcd ebctvmtouch README.mdgit add README.mdgit commit -m "add README"
Existing folder
cd existing_foldergit initgit remote add origin https://git.company.com/root/ebctvm.git
git add .git commit -m "Initial commit"

git push -u origin master

Existing Git repository
cd existing_repogit remote rename origin old-origingit remote add origin https://git.company.com/root/ebctvm.git