case 1
cd alg-ocr-utils #(在master)
git add . #(在master)
git commit -m "images enhancement" #(在master)
➜ alg-ocr-utils git:(new_text_detect-rule) ✗ git checkout -b "new_text_detect-rule"
➜ alg-ocr-utils git:(new_text_detect-rule) ✗ git push origin new_text_detect-rule
————報錯
➜ alg-ocr-utils git:(new_text_detect-rule) ✗ git pull #提示我要pull,但是執行之後仍不可以
# 求助(⊙﹏⊙)b
➜ alg-ocr-utils git:(new_text_detect-rule) ✗ git diff
➜ alg-ocr-utils git:(new_text_detect-rule) ✗ git commit -am 'data enhancement'
➜ alg-ocr-utils git:(new_text_detect-rule) ✗ git branch
➜ alg-ocr-utils git:(new_text_detect-rule) ✗ git pull origin new_text_detect-rule
➜ alg-ocr-utils git:(new_text_detect-rule) ✗ git status
➜ alg-ocr-utils git:(new_text_detect-rule) ✗ git push origin new_text_detect-rule
git status --檢視當前**狀態,改動,所在分支,是否有**衝突等git branch -a --檢視當前主幹下有哪些分支
git checkout --切換分支
git diff --檢視分支**改動
git常用命令學習筆記
1 初始化乙個git倉庫 git init2 新增檔案到git倉庫,可以反覆多次使用,新增多個檔案 git add3 完成,新增注釋 git commit4 要隨時掌握工作區的狀態,git status5 如果git status告訴你檔案被修改過,檢視修改的內容使用 git diff6 head指...
Git常用命令(學習筆記)
當你改亂了工作區某個檔案的內容,想直接丟棄工作區的修改時,用命令git checkout file。當你不但改亂了工作區某個檔案的內容,還新增到了暫存區時,想丟棄修改,分兩步,第一步用命令git reset head,就回到了上面,第二步按上面的步驟。已經提交了不合適的修改到版本庫時,想要撤銷本次提...
學習筆記 git常用命令
1 安裝 apt get install git core2 新增公鑰 使用如下命令生成金鑰檔案 ssh keygen c 294154435 qq.com t rsa 會在使用者目錄 ssh 下建立相應的金鑰檔案 可以使用 ssh v git github.com 命令來測試鏈結是否暢通。3 全域...