Answers for "how to push files to gitlab branch"

3

how to push local code to gitlab

## Git push using SSH
git push --set-upstream [email protected]:namespace/nonexistent-project.git master

## Git push using HTTPS
git push --set-upstream https://gitlab.example.com/namespace/nonexistent-project.git master
Posted by: Guest on May-28-2021
0

how to push to a new branch in gitlab

git push origin $feature_name
Posted by: Guest on September-13-2021
0

how to push to a new branch in gitlab

git commit -am "My feature is ready"
Posted by: Guest on September-13-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language