GIT: When checking out an alternative branch, I want to clear ignored files

巧了我就是萌 提交于 2019-12-24 08:28:42

问题


Assume I have a structure in master.

d - src 
      - main ...
      - resources ...
  - target
      - xyz

Files xyz should not be tracked, so I added into .gitignore target/* and commit the structure

  • git commit -m 'initial structure'

I create 2 branches

  • git branch t1
  • git branch t2

and switch to t1

  • git checkout t1

I start doing some work, compile stuff, such that target is populated. I commit my changes to t1.

  • git commit -a 't1 specific changes'

then I switch to t2

  • git checkout t2

When I look into target, it is still populated with the files created when branch t1 was active, while I would like to have these 'cleared out'

I found a similar discussion stating that git should behave differently than I see. Git is deleting an ignored file when i switch branches

What am I missing ?

Francis


回答1:


This is by design. Git will not touch files that it is not tracking in the working folder. If you want to clean the untracked files you can use

git clean -xdf

More commonly, I want to throw away changes that are not tracked but not ignored. This may be because I was experimenting with some code and added a new class file. In this case I would use:

git clean -df

This would leave my output directories as is. I would rely on my development tools to clean these folders instead.

You could use the hook, but that's not a good solution as it is harder to share across a team.




回答2:


You can add a post-checkout hook which cleans ignored files:

git clean -f -X



回答3:


The question you linked is talking about a file that's tracked in one branch and ignored in another. You're talking about generated files that aren't tracked in any branches. Since git isn't tracking them, it won't do anything to them.



来源:https://stackoverflow.com/questions/4752025/git-when-checking-out-an-alternative-branch-i-want-to-clear-ignored-files

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!