赞
踩
git的上传命令方式:
方式一、从官网上git clone 网址
初始化的时候
方式二、
1、git init
2、git remote add origin 码云clone地址
3、git add . //.表示所有文件 上传文件
4、git pull origin master
5、git commit -m ‘随便定义的名字’ //提交文件
6、git push -u origin master
修改文件后再次提交:
7、git pull origin master
8、git add .
9、git commit -m ‘lay(随便定义的名字)’
10、git push -u origin master
https://www.cnblogs.com/salmonlin/p/7805409.html
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。