常用指令&語法 <<
Previous Next >> pip指令
git指令
//設定用戶名
git config --global user.name "your_name"
//設定用戶信箱位址
git config --global user.email "your_name@example.com"
//複製現有倉儲
git clone <倉儲網址>
//新增全部更改過的檔案至暫存區域
git add .
//將全部檔案從暫存區域中移除
git reset .
//提交並附上記錄之名稱
git commit -m "commit message"
//合併近端遠端儲存庫
git pull
//將暫存區域之檔案推送至遠端
git push
//擷取子目錄
git submodule add
//擷取已有子目錄之倉儲
git clone --recurse- submodules
常用指令&語法 <<
Previous Next >> pip指令