git 仓库初始化
全局设置
git config --global user.name "寂寞的钢蛋儿"
git config --global user.email "guanchaoguo@qq.com"
创建 git 仓库:
mkdir test
cd test
git init
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin https://gitee.com/guanchaoguo/test.git
git push -u origin "master"
已经存在的仓库
cd existing_git_repo
git remote add origin https://gitee.com/guanchaoguo/test.git
git push -u origin "master"
本文来自博客园,作者:vx_guanchaoguo0,转载请注明原文链接:https://www.cnblogs.com/guanchaoguo/p/17954402