Answers for "add project to gitlab file"

1

how to add existing project to gitlab

cd existing_folder
git init
git remote add origin url_git
git add .
git commit -m "Initial commit"
git push -u origin master
Posted by: Guest on October-23-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language