标签:
1.在命令行中创建GIT仓库
mkdir DriveAssistant
cd DriveAssistant
git init
echo "# DriveAssistant" >> README.md
git add README.md
git commit -m "first commit"
git remote add origin https://git.coding.net/crxx/DriveAssistant.git
git push -u origin master
2.已有项目
git remote add origin https://git.coding.net/crxx/DriveAssistant.git
git push -u origin master
3.git命令行教程
标签:
原文地址:http://www.cnblogs.com/yidoucai/p/5226151.html