EKsumic's Blog

let today = new Beginning();

Click the left button to use the catalog.

OR

GitBash 使用 .gitignore 完整步驟

GitBash 使用 .gitignore 完整步驟

 

1. 創建 .gitignore 文件

在你的 Git 倉庫根目錄 中,手動創建一個名為 .gitignore 的文件。

 

2. 編輯 .gitignore 文件

在 .gitignore 文件中添加要忽略的內容,例如:

# 忽略 Visual Studio 緩存和中間編譯文件夾
.vs/
obj/

# 忽略所有 .log 文件
*.log

 

3. 清理已提交的被忽略文件

如果之前提交過需要忽略的文件(如 .vs 和 obj),執行以下命令:

git rm -r --cached .vs obj
git add .gitignore
git commit -m "添加 .gitignore 並忽略緩存文件夾"

 

4. 推送更改到遠程倉庫

git push

 

5. 驗證 .gitignore 是否生效

使用以下命令確認忽略規則是否正確匹配:

git check-ignore -v .vs obj

這樣,你的 .gitignore 文件就能正確忽略指定文件和文件夾了!

 

→上一篇:GitBash如何從GitHub同步倉庫到本地並保持更新

→下一篇:NaN

→返回目錄:GitBash使用手冊

This article was last edited at 2024-12-17 10:14:03

Today's comments have reached the limit. If you want to comment, please wait until tomorrow (UTC-Time).

There is 00h26m15s left until you can comment.