You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@sobolevn do you think we should add an -a feature to 'git secret add` that adds all the relevant files in the repo dir to git?
On one hand, it seems like overkill; on the other hand (and someone explicitly asking for this feature shows there's some demand), I can see it being useful for people who are using a git repo specifically to use git-secret on every file in the repo.
What are the steps to reproduce this issue?
Now
git secret add file
will add one file, how can use command to add all files in the current repo directory to encrypt?I wish add one subcommand :
git secret add --all
==
find . ! -path "./.gitignore/*" ! -path "./.git/*" ! -path "./.gitsecret/*" ! -path "./.gitignore" ! -path "./.git" ! -path "./.gitsecret" -exec git secret add {} \;
Well, I have used shell script to make it.
Thank you.
The text was updated successfully, but these errors were encountered: