- 添加远程库
git remote add origin <http:...>
- 删除远程库
git remote rm origin
- 修改远程库地址
git remote set-url origin <http:...>
- 查看远程库详细信息
git remote -v
git checkout -b master
git branch
- push代码
git add 文件
git commit -m "描述"
git push origin master
git config --globel user,email " "
git config --globel user,name " "