Answers for "gitlab push existing project"

2

push project to gitlab account

# First remove any existing hidden git folder in your project folder
# Initialize project in your folder
git init
# add your gitlab project as your remote origin
git remote add origin https://gitlab.com/your_account_name/project_name.git
# add all files in the folder
git add .
# commit changes
git commit -m "Initial commit"
# push your changes to the master branch
git push origin master
# Files should now be visible if you navigate to the address in your browser
https://gitlab.com/your_account_name/project_name
Posted by: Guest on June-22-2021
13

git push existing repo

cd existing_folder
git init
git remote add origin https://gitlab.com/abc.git
git add .
git commit -m "Initial commit"
git push -u origin master
Posted by: Guest on August-26-2020
0

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
-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 "gitlab push existing project"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language