撤消 .gitignore 更改
Undo .gitignore changes
我以前忽略了一个文件夹,但现在我只想忽略它的内容:如何 remove/modify 我的 .git 忽略文件中的一些条目,以便 git 将再次跟踪他们?我尝试更新 gitignore 文件并使用 git add -f <folder-name>
添加文件夹,但没有成功。
感谢您的帮助
git 不跟踪文件夹,在 git.
中忽略文件夹或忽略其内容是一回事
也就是说,从 .git 中删除文件夹条目应该就足够了。git忽略以开始跟踪该文件夹中的内容。
如果要跟踪空目录,仅忽略其内容是什么意思?
让目录(在存储库中)保持(几乎)为空的方法是在该目录中创建一个包含以下四行的 .gitignore 文件:
# Ignore everything in this directory
*
# Except this file
!.gitignore
假设您在添加到 .gitignore 文件的根文件夹下有一个名为 target
的文件夹。文件夹结构类似于以下:
-project root
|- src
|-- your src files here
|- target
|- file1
|- file2
|-.gitignore
我假设您想撤消 git 忽略并有选择地忽略您之前添加到忽略列表的目录中的文件。假设您只想将文件 1 从上面的目录结构添加到 git 忽略。在这种情况下,编辑 .gitignore 文件以删除 /target/ 文件夹模式并添加一个新的 . git忽略以file1为内容的目标文件夹内部。它应该会自动选择 file2 进行跟踪。
-project root
|- src
|-- your src files here
|- target
|- file1
|- file2
|- .gitignore - add file1 here
|-.gitignore - remove /target/ from here
我以前忽略了一个文件夹,但现在我只想忽略它的内容:如何 remove/modify 我的 .git 忽略文件中的一些条目,以便 git 将再次跟踪他们?我尝试更新 gitignore 文件并使用 git add -f <folder-name>
添加文件夹,但没有成功。
感谢您的帮助
git 不跟踪文件夹,在 git.
中忽略文件夹或忽略其内容是一回事也就是说,从 .git 中删除文件夹条目应该就足够了。git忽略以开始跟踪该文件夹中的内容。
如果要跟踪空目录,仅忽略其内容是什么意思?
让目录(在存储库中)保持(几乎)为空的方法是在该目录中创建一个包含以下四行的 .gitignore 文件:
# Ignore everything in this directory
*
# Except this file
!.gitignore
假设您在添加到 .gitignore 文件的根文件夹下有一个名为 target
的文件夹。文件夹结构类似于以下:
-project root
|- src
|-- your src files here
|- target
|- file1
|- file2
|-.gitignore
我假设您想撤消 git 忽略并有选择地忽略您之前添加到忽略列表的目录中的文件。假设您只想将文件 1 从上面的目录结构添加到 git 忽略。在这种情况下,编辑 .gitignore 文件以删除 /target/ 文件夹模式并添加一个新的 . git忽略以file1为内容的目标文件夹内部。它应该会自动选择 file2 进行跟踪。
-project root
|- src
|-- your src files here
|- target
|- file1
|- file2
|- .gitignore - add file1 here
|-.gitignore - remove /target/ from here