Find commits that modify file names matching a pattern in a GIT repository

后端 未结 7 1724
礼貌的吻别
礼貌的吻别 2021-02-03 18:36

I\'d like to find commits in my code base that add video files to throw them out. Is there a way to look for these files in git ?

For example let\'s say all videos have

7条回答
  •  庸人自扰
    2021-02-03 19:40

    If you want to remove these files from all your commits, consider rewriting the entire history with the filter-branch command. E.g.,

    git filter-branch --index-filter 'git rm --cached --ignore-unmatch -r *.wml' HEAD
    

提交回复
热议问题