Skip to content

Instantly share code, notes, and snippets.

@ssp
Last active November 1, 2016 15:00
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ssp/1c152c9a70bace500108ab9bae69624f to your computer and use it in GitHub Desktop.
Save ssp/1c152c9a70bace500108ab9bae69624f to your computer and use it in GitHub Desktop.
Script to clone and build gitx
#!/usr/bin/env sh
#
# Script to clone gitx from github and build it using
# the scripts provided by the project.
#
# Sven-S. Porst @ssp <ssp-web@earthlingsoft.net>
#
git clone https://github.com/ssp/gitx.git
cd gitx
git submodule update --init --recursive
cd objective-git
script/bootstrap
script/update_libgit2
cd ..
./build.py build release
open build/Release
@corysimmons
Copy link

As Mark said, just skip the ./build.py build release step and open the XCodeProj. Then run Build. It should create a functional binary in release dir.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment