Git 全局设置:
git config --global user.name "user0001.c"
git config --global user.email "user001@163.com"
创建 git 仓库:
mkdir helloWorld
cd helloWorld
git init
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin https://gitee.com/user001/helloWorld.git
git push -u origin "master"
已有仓库?
cd existing_git_repo
git remote add origin https://gitee.com/user001/helloWorld.git
git push -u origin "master"
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。