GIT操纵

简易的命令行入门教程:

Git 全局设置:

git config --global user.name "XXX"
git config --global user.email "XXX@XX.com"

创建 git 仓库:

mkdir flysnow_2ull
cd flysnow_2ull
git init
touch README.md
git add README.md
git commit -m "first commit"
git remote add origin https://gitee.com/weimaoer/flysnow_2ull.git
git push -u origin master

已有仓库?

cd existing_git_repo
git remote add origin https://gitee.com/weimaoer/flysnow_2ull.git
git push -u origin master
上一篇:MQTT协议之 Apache Apollo服务


下一篇:什么是Mixin模式:带实现的协议