Hi, Andrea,
I'm glad to hear that things are working for you now!
On Sep 2, 2010, at 9:15 , Andrea Mattana wrote:
I have used a different string to clone the git repository, and
consist
on:
git clone http://casper.berkeley.edu/git/mlib_devel.git
I really don't know why the results, in using 'git://' or
'http://', have
been different
You should end up with the same results using either URL. Using
git:// is preferable to http:// because it is more "git-aware" (not
surprisingly) and therefore can be more efficient over the network.
Using http:// is generally considered a backup in case intervening
firewalls block git:// traffic.
Have you been running "git pull" from time to time? This is
necessary to get updates that have been pushed by others. For
reasons beyond the scope of this list, it is probably preferable to
do...
git pull --ff-only
...if you have not been doing development on the casper libraries
themselves. If that fails because it can't "fast-forward", then
there are likely some inadvertent changes in your local mlib_devel
files.
Hope this helps,
Dave