码云初始化git仓库

Git 全局设置:
git config --global user.name "xxx"
git config --global user.email "xxx@163.com"

 

创建 git 仓库:
mkdir xxx
cd xxx
git init
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin https://gitee.com/xxx/xxx.git
git push -u origin master

 

已有仓库?
cd existing_git_repo
git remote add origin https://gitee.com/xxx/xxx.git
git push -u origin master

posted @ 2021-03-09 09:38  谢凌  阅读(356)  评论(0编辑  收藏  举报