summaryrefslogtreecommitdiff
path: root/gitremotes
blob: 91bf2fe84fb4580c1b479076a774066f09b20870 (plain)
  1. #!/usr/bin/perl
  2. # Parses list of remotes in doc/git.mdwn, configures git to use them
  3. # all, and fetches updates from them.
  4. my $error=0;
  5. open (IN, "doc/git.mdwn") || die "doc/git.mdwn: $!";
  6. while (<IN>) {
  7. if (/^\*\s+\[?\[?(\w+)(?:\|\w+)?\]?\]?\s+`([^>]+)`/) {
  8. # note that the remote name has to be a simple word (\w)
  9. # for security/sanity reasons
  10. my $remote=$1;
  11. my $url=$2;
  12. # check configured url to deal with it changing
  13. my $info=`git remote show -n $remote`;
  14. my ($oldurl)=$info=~/URL: (.*)/m;
  15. if ($oldurl ne $url) {
  16. system("git remote rm $remote 2>/dev/null");
  17. $error |= system("git", "remote", "add", "-f", $remote, $url);
  18. }
  19. else {
  20. $error |= system("git", "fetch", $remote);
  21. }
  22. }
  23. }
  24. close IN;
  25. exit $error;