coding
1、第一次上傳
git add .
git commit -m "初次提交"
git remote add origin https://.......
git push -u origin master
2、本地修改程式碼後,執行命令,cd 到當前專案
git add .
git commit -m "增加了..."
git remote add origin https://......
git push -u origin master
==============================================================================
碼雲
1、進入當前專案,建立 git 倉庫:
git init
touch README.md
git add README.md
git commit -m "初次提交"
git remote add origin https://........
git push -u origin master
2、已有專案
cd 當前專案
git add .
git commit -m "增加了..."
git remote add origin https://.........
git push -u origin master
====================================================================================
碼雲建立專案
largn進入專案
1、初始化 git init
2、暫存 git add .
3、提交 git commit -m "初次提交" git commit -m "first commit"
4、git remote add origin https:.......
5、git push -u origin master
6、輸入使用者名稱 密碼提交。
7、每次編輯前先同步專案 git pull
修改後提交
1、git add .
2、git commit -m "first commit"
3、提交推送 git push 完事
複製程式碼