Wednesday, August 24, 2022

Gitlab upload local files to remote repository

Hello, You can use the followiung method to upload locl files to remote repository in Gitlab cd existing_folder git init --initial-branch=main git remote add origin git@gitlab.com:youraccount/project_name.git git add . git commit -m "Initial commit" git push -u origin main