how to push to gitlab code example
Example 1: gitlab clone branch
git clone --single-branch --branch <branchname> <remote-repo>
Example 2: how to push local code to gitlab
## Git push using SSH
git push --set-upstream git@gitlab.example.com:namespace/nonexistent-project.git master
## Git push using HTTPS
git push --set-upstream https://gitlab.example.com/namespace/nonexistent-project.git master
Example 3: gitlab push existing project commandlie
git config --global user.name "Roka Paudel,Sarmila S."