Git command - toumei/1071-database-G13 GitHub Wiki
git 指令:
- 第一次載入專案
- $ cd /d
- $ git clone [email protected]:toumei/1071-database-G13.git
- $ cd 1071-database-G13/
- $ git config --global user.email "[email protected]"
- $ git config --global user.name "yourname"
- 新增檔案
- 新增全部專案的檔案
- $ git add *
- $ git add -A
- $ git add --all
- 新增該資料夾下的全部檔案
- 新增一個檔案
- 檔案修改內容
- $ git commmit -m "主標題"
- $ git commmit -m "主標題" -m "副標題"
- $ git commmit -m "主標題" -m "副標題1" -m "副標題2" ...
- 提交檔案
- 重新命名資料夾
- $ git mv 原本資料夾名稱 修改後資料夾名稱
- 更新專案