1. 程式人生 > >coding上傳專案的基本步驟

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