Git(hub) development with dropbear


remogatto

Still Fresh
Joined
Jan 18, 2010
Messages
16
Hi all,


I've just published a short blog post about git(hub) development with dropbear on the pandora. Hopefully, you can find it useful. I'll look forward for your feedback.


Cheers,


Andrea
 
Good stuff. I wonder if using smart http support also works on the pandora?

I did a quick try but without luck. I'm using git version 1.7.0.2, smart http should work with this. I could try to build a newer version though.
Cheers for that. No that's cool I was just curious. Good article.


One minor thing that I would like would be to put everything into the bashrc (As I frequently back this up).


Could you do something like this



Code:
export GIT_SSH="ssh -i ~/.ssh/id_rsa $*"

Or if that doesn't work:



Code:
git_ssh ()

{

    ssh -i ~/.ssh/id_rsa $*

}

export GIT_SSH="git_ssh $*"


Or something of this variety.
 
Back
Top