本地直接刪除檔案後,git到遠端倉庫,為什麼不會同步刪除對應檔案
git add .只會在stage新增檔案和修改檔案,不會刪除檔案
git add -a 會stage所有操作包括刪除檔案
(17/10/26)提交修改
git add stage 暫存區
git commit 版本區
git push 遠端倉庫
git status 檢視當前狀態
git log 檢視資訊
分支合併
git branch 列出所有分支
git branch [new branch] 建立新的分支
git checkout [branch] 切換分支
git branch -d [branch] 刪除分支
git merge [branch] 合併分支
linux常用command line
pwd 當前目錄
dir 當前目錄下檔案
mkdir 建立目錄
cat 檢視檔案
vi 編輯檔案
touch 建立檔案
rm 刪除檔案
rm -rf 強制刪除檔案
git常用命令學習筆記
1 初始化乙個git倉庫 git init2 新增檔案到git倉庫,可以反覆多次使用,新增多個檔案 git add3 完成,新增注釋 git commit4 要隨時掌握工作區的狀態,git status5 如果git status告訴你檔案被修改過,檢視修改的內容使用 git diff6 head指...
Git 常用命令學習筆記
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...
Git常用命令(學習筆記)
當你改亂了工作區某個檔案的內容,想直接丟棄工作區的修改時,用命令git checkout file。當你不但改亂了工作區某個檔案的內容,還新增到了暫存區時,想丟棄修改,分兩步,第一步用命令git reset head,就回到了上面,第二步按上面的步驟。已經提交了不合適的修改到版本庫時,想要撤銷本次提...