On Mon, Oct 13, 2008 at 3:56 PM, <[EMAIL PROTECTED]> wrote: > Hi Jeff - thanks for the code/tip, I tried using the branch, installed it, > and yet I'm still seeing the same problem: seems to hang, have to hit > CTRL-C, then belatedly see a password prompt.
Yea, this is because my main/master branch is the same as regular Fabric -- you weren't actually using the alternate branch (see below). > Note that when I did, > > git checkout execution > > ...per your instructions, I get an error: > > error: pathspec 'execution' did not match any file(s) known to git. > Did you forget to 'git add'? I'm terribly sorry, I gave you bad instructions! (Too used to working on an already-set-up repository...). You needed to do 'git checkout origin/execution' instead of just 'git checkout execution'. That should work (it'll warn you about it not being a local branch but that shouldn't matter). Or you can do what Christian just said in his latest email -- that's how I get my local setup so that I have two "local" branches instead of just one. Since you're not planning on actually changing the code, however, doing 'checkout origin/execution' may be quicker :) -Jeff _______________________________________________ Fab-user mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/fab-user
