I have a problem deleting sensitive data from one of my git reps. I read the help page https://help.github.com/articles/remove-sensitive-data and followed the instructions one by one.
I did it first with success:
$ git clone https:
next I did this with succes
$ cd github-gem
and then I tried the following without success and received the following message
$ git filter-branch --index-filter 'git rm --cached --ignore-unmatch Rakefile' --prune-empty --tag-name-filter cat -- --all fatal: ambigous argument 'rm': unknown revision or path not in the working tree. Use '--' to seperate paths from revisions
Can anyone help?
source share