Sunday 25 November 2012

Appcelerator TestFlight SDK module

TestFlight is a service that helps beta test and analyse your iOS apps. We use the Appcelerator framework for some apps and have released a module into their Marketplace.

https://marketplace.appcelerator.com/apps/4114

There is also a CommonJS helper module that aids use

https://github.com/ndastur/TestFlightTiJS

Thursday 22 November 2012

Add current directory as new remote git repo

A note to self.

This command line is used to add an existing local git repo to a newly created remote one using the current directory name as the repo name. Note spaces are removed.

NAME=`basename "\`pwd\`" | tr -d ' '` && git remote add origin git@<replace_with_your_host>:$NAME && git push origin master && git pull origin master

The original post that helped with the actual process is:
http://blog.tomaszkiewicz.net/2011/10/moving-existing-local-git-repository-into-a-fresh-gitolite-setup/