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網站中查看是否上傳成功