git config --global user.name "XXX" git config --global user.email "XXX@XXX.com"
cd e:cd e:/Gitgit clone https://gitlab.com/XXX/Test.git cd Test touch README.md git add README.md git commit -m "add README" git push -u origin master
cd existing_folder git init git remote add origin https://gitlab.com/lukySmile/Test.git git add . git commit -m "Initial commit" git push -u origin master
cd existing_repo git remote rename origin old-origin git remote add origin https://gitlab.com/lukySmile/Test.git git push -u origin --all git push -u origin --tagsReference:https://gitlab.com/lukySmile/Test#repo-command-line-instructions