Coding上传项目步骤

step1:在coding上面创建一个项目myboke
step2:在git 命令台中进入项目的根目录下面,使用git init创建.git文件夹和.gitigonre文件,帮组本地与远程的链接
step3:使用git pull <项目地址>同步项目上面的文件
step4: git add * 添加项目下面的所有文件
step5: git commit -m ‘备注’ 将文件添加在cache中并添加备注
step6:git remote add <名字(随意)> shh地址
step7:git push  
step8:最后在coding网站中查看是否上传成功

Zhihong Fu

原文地址:https://www.cnblogs.com/fuzhihong0917/p/5990648.html