Answers for "git push existing repository to gitlab"

1

how to push code to gitlab

cd existing_repo
git init
git remote add origin https://gitlab.com/your_account_name/project_name.git
git branch -M main
git add .
git commit -m "Initial commit"
git push -uf origin main
Posted by: Guest on December-16-2021
-2

gitlab push existing project commandlie

git config --global user.name "Roka Paudel,Sarmila S."
Posted by: Guest on November-15-2020

Code answers related to "git push existing repository to gitlab"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language