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
No comments:
Post a Comment