Posted by
Gabriel Landini on
Oct 12, 2009; 11:09am
URL: http://imagej.273.s1.nabble.com/How-can-I-get-updates-of-ImageJ-automatically-tp3690836p3690839.html
On Monday 12 October 2009 11:39:44 Michael Doube wrote:
> For those of us who'd like to pull in Wayne's changes to the ImageJ
> source to keep an updated version locally, what is the correct way to
> request them from the git repo?
Are you are talking about ImageJA, the one used by Fiji?
If so, ImageJA is a submodule of Fiji, so I suppose this is:
git submodule init ImageJA
git submodule update ImageJA
I later found there is a different way explained here:
http://pacific.mpi-cbg.de/wiki/index.php/Git_submodule_tutorialNot sure which way is best, I used the first and it works. I hope Johannes
will correct me if this is not right.
I do not know if there is also an ImageJ (i.e. not "A") git project.
But in any case (I hope I got this right), ImageJA is not automatically
updated with the daily build changes. I think Johannes incorporates these
every so often (although this is *very* often).
Alternatively, in linux, you can download the ImageJ daily build source from
Wayne's site with the following script:
#!/bin/bash
wget -r -np rsb.info.nih.gov/ij/source/
but you would not see what are the version differences, obviously.
I hope it helps.
Gabriel