赞
踩
一、Git global setup(Git全局设置)
git config --global user.name "账户" git config --global user.email "邮箱"
二、Create a new repository(创建新存储库)
git clone 仓库链接 cd 文件夹 touch README.md git add README.md git commit -m "add README" git push -u origin master
三、Existing folder or Git repository(现有文件夹或Git存储库)
cd existing_folder git init git remote add origin 仓库链接 git add . (上传) git commit (备注信息) git push -u origin master (提交上传)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。