快速设置— 如果你知道该怎么操作,直接使用下面的地址
我们强烈建议所有的 git 仓库都有一个README
, LICENSE
, .gitignore
文件
初始化 readme 文件
Git 入门?查看 帮助 , Visual Studio / TortoiseGit / Eclipse / Xcode 下如何连接本站, 如何导入仓库
简易的命令行入门教程:
Git 全局设置:
git config --global user.name "sukerhand"
git config --global user.email "sukerhand@qq.com"
创建 git 仓库:
mkdir pi
cd pi
git init
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin https://gitee.com/sukerhand/pi.git
git push -u origin "master"
已有仓库?
cd existing\_git\_repo
git remote add origin https://gitee.com/sukerhand/pi.git
git push -u origin "master"