简易的命令行入门教程:
Git 全局设置:12git config --global user.name "用户名"git config --global user.email "邮箱"
创建 git 仓库:12345678mkdir webtestcd webtestgit inittouch README.mdgit add README.mdgit commit -m "注释"git remote add origin https://git.oschina.net/higher/webtest.gitgit push -u origin master
已有项目?123cd existing_git_repogit remote add origin https://git.oschina.net/higher/webtest.gitgit push -u origin master