Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@jpwatts
Created May 11, 2011 16:42
Show Gist options
  • Star 46 You must be signed in to star a gist
  • Fork 8 You must be signed in to fork a gist
  • Save jpwatts/966838 to your computer and use it in GitHub Desktop.
Save jpwatts/966838 to your computer and use it in GitHub Desktop.
This Xcode 4 build phase script automatically sets the version and short version string of an application bundle based on information from the containing Git repository.
#!/bin/bash
# This script automatically sets the version and short version string of
# an Xcode project from the Git repository containing the project.
#
# To use this script in Xcode 4, add the contents to a "Run Script" build
# phase for your application target.
set -o errexit
set -o nounset
INFO_PLIST="${BUILT_PRODUCTS_DIR}/${WRAPPER_NAME}/Info"
# Use the latest version tag for CFBundleShortVersionString. I tag releases
# in Git using the format v0.0.0; this assumes you're doing the same.
SHORT_VERSION=$(git --git-dir="${PROJECT_DIR}/.git" --work-tree="${PROJECT_DIR}" describe --dirty | sed -e 's/^v//' -e 's/g//')
# I'd like to use the Git commit hash for CFBundleVersion.
# VERSION=$(git --git-dir="${PROJECT_DIR}/.git" --work-tree="${PROJECT_DIR}" rev-parse --short HEAD)
# But Apple wants this value to be a monotonically increasing integer, so
# instead use the number of commits on the master branch. If you like to
# play fast and loose with your Git history, this may cause you problems.
# Thanks to @amrox for pointing out the issue and fix.
VERSION=$(git --git-dir="${PROJECT_DIR}/.git" --work-tree="${PROJECT_DIR}" rev-list master | wc -l)
defaults write $INFO_PLIST CFBundleShortVersionString $SHORT_VERSION
defaults write $INFO_PLIST CFBundleVersion $VERSION
@ishaq
Copy link

ishaq commented Nov 2, 2012

you might want to incorporate the small change I did at: https://gist.github.com/4003642, apparently apple wants short version to be at most 3 integers separated by dots. so I have introduced a new variable FullVersion to store hash info

@CobaltGray
Copy link

Daft question - but what should WRAPPER_NAME be ? Its not a default var in Xcode 4.5

@zzal
Copy link

zzal commented Jan 29, 2014

I had to add describe --tags inside git commands, but overall, it getting the right information.
BUT, looks like the defaults write $INFO_PLIST section doesn't work at all.

Should it? In Xcode 5?

@nickshanks
Copy link

I feel I have significantly improved this script and urge people to take a look: https://gist.github.com/nickshanks/9048830

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