1. 程式人生 > >Git 命令值得注意的幾個點

Git 命令值得注意的幾個點

大多數人對 Git 的常用命令都有一定的瞭解,這裡羅列一些具體案例說明需要使用哪些命令。  

從網上clone一份程式碼

舉例:在目錄 D:\work\WDEMO 下,下載程式碼:

git clone https://github.com/miLLlulei/BasicLibrary

防止每次 push 程式碼的時候輸入賬號密碼,所以需要儲存帳號密碼:
開啟 D:/work/WDEMO/BasicLibrary/.git/config 檔案;
注意 windows 下 .git 資料夾預設是隱藏的,需要開啟隱藏檔案;
在 config 檔案增加上以下配置:

[credential]
    helper 
= store

提交程式碼

# 先拉取遠端程式碼,併合並:
git pull
# 添加當前目錄的所有檔案到暫存區:
git add .
# 提交記錄:
git commit -m '記錄內容說明'
# 推送到遠端:
git push origin master
git add .
git commit -m '記錄內容說明'
# 可以用下面代替:
git commit -am '記錄內容說明'

永久刪除檔案,包括歷史提交記錄

# 刪除某個檔案 -- Test 目錄下的 test.txt
git filter-branch --force --index-filter
'git rm --cached --ignore-unmatch Test/test.txt' --prune-empty --tag-name-filter cat -- --all # 刪除某個目錄 -- Test 目錄 git filter-branch --force --index-filter 'git rm --cached -r --ignore-unmatch Test' --prune-empty --tag-name-filter cat -- --all # 推送到遠端,這步是不可逆的,注意備份原始碼 git push origin master --force --
all # 推送到你的所有 tag git push origin master --force --tags # 清除本地倉庫 objects,這個是可選操作,因為不弄,等待gc也會清除的。 rm -rf .git/refs/original/ git reflog expire --expire=now --all git gc --prune=now git gc --aggressive --prune=now