Aloha, I’ve followed the instructions in the ‘jucequake’ post about how to checkout the modules branch using git and it didn’t seem to work. Well, actually it did download a copy of juce but to all appearances it’s 1.5.4 and nowhere do I see a modules folder. Could someone please provide an update on the procedure to use. I’m running windows xp/sp3, have cygwin installed (latest version) and downloaded this version of git - Git-1.7.9-preview20120201.exe
I installed it, told it to use the explorer hooks, and windows cr/lf’s
I then used the ‘git bash here’ command from the windows explorer and issued the checkout commands
Actually I did the complete sequence twice (the second one is below) - the first time I used the -b option after the clone.
The second time (below) I did the ‘git checkout modules’ after the clone. In both cases, I don’t seem to have the modules branch.
What do I do next?
kolsen@SHUTTLEX ~/My Documents/Visual Studio 2010/Projects
$ git clone --depth 1 git://juce.git.sourceforge.net/gitroot/juce/juce
Cloning into 'juce'...
remote: Counting objects: 1620, done.
remote: Compressing objects: 100% (1423/1423), done.
remote: Total 1620 (delta 400), reused 723 (delta 160)
Receiving objects: 100% (1620/1620), 6.68 MiB | 84 KiB/s, done.
Resolving deltas: 100% (400/400), done.
kolsen@SHUTTLEX ~/My Documents/Visual Studio 2010/Projects
$ cd juce
kolsen@SHUTTLEX ~/My Documents/Visual Studio 2010/Projects/juce (master)
$ git checkout modules
error: pathspec 'modules' did not match any file(s) known to git.
kolsen@SHUTTLEX ~/My Documents/Visual Studio 2010/Projects/juce (master)
$ git checkout -b origin/modules
Switched to a new branch 'origin/modules'
kolsen@SHUTTLEX ~/My Documents/Visual Studio 2010/Projects/juce (origin/modules)
$