How to apply gitignore afterwards?

2019-06-21 03:24发布

I pushed my local repository to GitHub. In the process of committing my code, I forgot to create a .gitignore file. As a result, I have committed and subsequently pushed some folders and files that I didn't want on GitHub (or in my local repository, for that matter).

How can I apply .gitignore now, so that I can remove some undesired folders and files going forward?

4条回答
一夜七次
2楼-- · 2019-06-21 03:31

You can git rm <unnecessary file and folder names> then add them to your .gitignore file, which will remove them from that commit forward. The issue is that they will remain in the history unless you alter the earlier commits. If there is no sensitive data in those files, I'd say leave the history as is. If you need to remove sensitive data from your repository history, see GitHub's help article on the subject

查看更多
Emotional °昔
3楼-- · 2019-06-21 03:35

If this is your private repo and you haven't published it yet, use filter-branch to edit history:

git filter-branch --index-filter '
  git rm -r --cached --ignore-unmatched bin;
' --all

Then, add/edit your .gitignore file:

>> .gitignore echo bin
git add .gitignore
git commit -m 'add gitignore files'

Since you have already published your history, it's best practice not to rewrite it. Just remove the bin directory and add a .gitignore file

git rm -r bin
# add .gitignore
git commit -m 'remove and ignore bin folder'
查看更多
再贱就再见
4楼-- · 2019-06-21 03:44

First, delete the bin directory added to the repo by accident. You may refer here: http://help.github.com/remove-sensitive-data/

Then add .gitignore and commit, and then push to github.

查看更多
你好瞎i
5楼-- · 2019-06-21 03:52

From memory you have to remove it and re-add it. Git ignore will then take effect.

Answered already?

查看更多
登录 后发表回答