Git global setup git config --global user.name "王树燚" git config --global user.email "shuyi.w@unipets.cn" Create a new repository git clone ssh://git@gitlab-ssh.unipets.cn:22897/deeplearning/catface-tiny.git cd catface-tiny touch README.md git add README.md git commit -m "add README" git push -u origin master Push an existing folder cd existing_folder git init git remote add origin ssh://git@gitlab-ssh.unipets.cn:22897/deeplearning/catface-tiny.git git add . git commit -m "Initial commit" git push -u origin master Push an existing Git repository cd existing_repo git remote rename origin old-origin git remote add origin ssh://git@gitlab-ssh.unipets.cn:22897/deeplearning/catface-tiny.git git push -u origin --all git push -u origin --tags 相关文章: 2022-12-23 2022-02-09 2021-09-27 2022-01-23 2022-12-23 2021-10-10 2021-08-31 2021-06-03