Created
August 11, 2019 08:34
-
-
Save dmitryd/ab52b51cc0f71a154580ecb6419d3f64 to your computer and use it in GitHub Desktop.
Replace git email in all subdirectories
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
for f in `grep -Rl --include=config '[email protected]' .` ; do sed -i 's/[email protected]/[email protected]/' "$f" ; done | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment