目前個人最常用的還是只有add/status/commit/pull/push這幾個:)
git add ./
git status ./
git commit abc/aaa.py -m "asdfg"
-feat //新功能;
-fix //修補bug;
-docs //文件;
-style //格式
-refactor //重構
-test //增加測試
-chore //構建過程或輔助工具的變動
#將本地倉庫檔案上傳到遠端倉庫
git push farend_dir branch_name
#獲取遠端資料
git fetch farend_dir
Git實用命令速記
git實用命令速記 1 建立 轉殖乙個已存在的遠端版本庫到本地 git clone ssh 建立乙個新的本地版本庫 git init 2 本地修改 在工作區修改檔案 git status 追蹤修改的檔案 對比工作區與版本庫的區別 git diff 新增所有當前修改到暫存區 下一次提交前 git ad...
常用命令 Git 常用命令大全
安裝教程可參照 廖雪峰老師的安裝教程。git config 在git中,使用git config 命令來配置 git 的配置檔案,git配置級別主要有3類 1 倉庫級別 local 本地 git 倉庫級別配置檔案,作用於當前倉庫。優先順序最高 2 使用者級別 global,全域性配置檔案,作用於所有...
Linux學習筆記 常用命令速記
建立資料夾 mkdir 資料夾名 刪除資料夾 rmdir 資料夾名 進入資料夾 cd 資料夾名 給某個目錄所有使用者配置讀寫許可權 chmod 777 r 資料夾名 r會遞迴裡面所有的子資料夾並給和父目錄一樣的許可權 這個許可權比較適合學習用,有點危險 解壓tar.gz檔案 tar xzf redi...