summaryrefslogtreecommitdiff
path: root/gitremotes
blob: f596c650f56f1a96b2b53ec5aeb7ad85f818b6d3 (plain)
  1. #!/usr/bin/perl
  2. # Parses list of remotes in doc/git.mdwn, configures git to use them
  3. # all. After running this, use "git remote update --prune" to pull
  4. # updates from all remotes.
  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. system("git", "remote", "add", "-f", $remote, $url)
  18. }
  19. }
  20. }
  21. close IN;