how to get in a repo gitlab bash code example
Example 1: gitlab clone branch
git clone --single-branch --branch <branchname> <remote-repo>
Example 2: how to use git in terminal
create new repo-git
echo "# SqlMentor" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin
https://github.com/asd/SqlMentor.git git push -u origin
master
push an existing repo-git
git remote add originhttps://github.com/asd/SqlMentor.git
git push -u origin master
Default editor