mirror of
https://github.com/jorgebucaran/fisher
synced 2024-11-19 09:25:40 +00:00
10 lines
291 B
Fish
10 lines
291 B
Fish
|
function fisher_mock_repos
|
||
|
for name in $argv
|
||
|
git -C $name init --quiet
|
||
|
git -C $name config user.email "git@fisherman"
|
||
|
git -C $name config user.name "fisherman"
|
||
|
git -C $name add -A > /dev/null
|
||
|
git -C $name commit -m "$name" > /dev/null
|
||
|
end
|
||
|
end
|