Displaying articles with tag

Installing GitNub

Posted by joakimk, Fri Aug 01 10:06:00 UTC 2008

A script to install the GitNub utility (MacOSX Leopard).

Update: Had some problems when I reinstalled this version but it seems that they have fixed it in the latest version.

wget http://s3.amazonaws.com/caged/releases/GitNub_0.9.0.zip
unzip -o GitNub_0.9.0.zip
cd GitNub
sudo cp -r GitNub.app /Applications
sudo cp nub /usr/local/bin
cd ..
rm -rf GitNub GitNub_0.9.0.zip
sudo /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/gem install open4

Added the special install line for open4 because of issues others had with it (10810 errors)...

To open a repo, just type ‘nub’ in a git repo.

0 comments | Filed Under: | Tags:

Using git on a non-standard ssh port

Posted by joakimk, Sun Jun 01 22:57:00 UTC 2008

Add an alias in ~/.ssh/config:
Host server1
Hostname server1.com
Port 2222
And then run git like this:
git clone ssh://git@server1/var/git/project

0 comments | Filed Under: | Tags: