search and replace
sed -e 's:origin:github:' -i .orig .git/config
find all config
find . -name config -depth 1 -exec sed -e 's:origin:github:' -i .orig {} \;
search and replace
sed -e 's:origin:github:' -i .orig .git/config
find all config
find . -name config -depth 1 -exec sed -e 's:origin:github:' -i .orig {} \;