We need to re-write stuff a lot while we're churning the code with Abra. For example, we wanted to rename all password related env vars to be prefixed with SECRET_. With the clone_all.py we can get all the repos cloned out. Next is to rewrite stuff and push it back. Then you can rm -rf ~/.abra/apps and get a fresh clone.
Starting proposal:
grep -l -R FOOBAR * | xargs sed -i 's/FOOBAR/BARFOO/'
We need to re-write stuff a lot while we're churning the code with Abra. For example, we wanted to rename all password related env vars to be prefixed with `SECRET_`. With the `clone_all.py` we can get all the repos cloned out. Next is to rewrite stuff and push it back. Then you can `rm -rf ~/.abra/apps` and get a fresh clone.
Starting proposal:
- `grep -l -R FOOBAR * | xargs sed -i 's/FOOBAR/BARFOO/'`
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
We need to re-write stuff a lot while we're churning the code with Abra. For example, we wanted to rename all password related env vars to be prefixed with
SECRET_. With theclone_all.pywe can get all the repos cloned out. Next is to rewrite stuff and push it back. Then you canrm -rf ~/.abra/appsand get a fresh clone.Starting proposal:
grep -l -R FOOBAR * | xargs sed -i 's/FOOBAR/BARFOO/'Wasn't really working but there is a little stab at it:
Done!