git命令-创建远程仓库
git使用
创建仓库topbookcc
- 不要添加README
用户名配置
git config --global user.name "topbookcc"
git config --global user.email "187xxxx6370@163.com"
git本地操作
cd topbookcc
git init
touch README.md
git add README.md
git commit -m "first commit for readme"git
git提交
# 关联远程仓库
git remote add origin https://gitee.com/topbookcc/topbookcc.git
# 推送至远程仓库
git push -u origin "master"