From 8a93d2a88ef36fffa6620a06747f74492ce1b281 Mon Sep 17 00:00:00 2001
From: Ian Abbott
-git clone git://comedi.org/git/comedi/comedi.git -git clone git://comedi.org/git/comedi/comedilib.git +git clone https://github.com/Linux-Comedi/comedi.git +git clone https://github.com/Linux-Comedi/comedilib.git
@@ -62,10 +62,37 @@ comedi-nonfree-firmware:
-git clone git://comedi.org/git/comedi/comedi_calibrate.git -git clone git://comedi.org/git/comedi/comedi-nonfree-firmware.git +git clone https://github.com/Linux-Comedi/comedi_calibrate.git +git clone https://github.com/Linux-Comedi/comedi-nonfree-firmware.git+
+ The Git repositories were previously hosted on comedi.org and had URLs of + the form "git://comedi.org/git/comedi/repository.git". + To update the URLs of previously cloned repositories (from comedi.org) to + use the current github.com URLs, use the "git remote set-url" + command as follows: +
+ ++cd /path/to/comedi +git remote set-url origin https://github.com/Linux-Comedi/comedi.git + +cd /path/to/comedilib +git remote set-url origin https://github.com/Linux-Comedi/comedilib.git + +cd /path/to/comedi_calibrate +git remote set-url origin https://github.com/Linux-Comedi/comedi_calibrate.git + +cd /path/to/comedi-nonfree-firmware +git remote set-url origin https://github.com/Linux-Comedi/comedi-nonfree-firmware.git ++ +
+ (Adjust the above commands according to which of the repositories you have + previously cloned, and their local filesystem pathnames.) +
+