create a new repo in gitlab By Preneesh AV -- 09-Nov-2018 -- 94 Comments Command line instructionsGit global setupgit config --global user.name "Preneesh AV"git config --global user.email "preneesh@company.com"Create a new repositorygit clone https://git.company.com/root/ebctvm.gitcd ebctvmtouch README.mdgit add README.mdgit commit -m "add README"Existing foldercd existing_foldergit initgit remote add origin https://git.company.com/root/ebctvm.gitgit add .git commit -m "Initial commit"git push -u origin masterExisting Git repositorycd existing_repogit remote rename origin old-origingit remote add origin https://git.company.com/root/ebctvm.git Home Articles