Files
git-tfs/Releasing.md
T
2015-06-01 08:59:01 -04:00

719 B

BUILDING AND RELEASING GIT-TFS

Normally, you should do this:

  1. Make sure your HEAD is clean and that it is the same as the upstream master!
> git ls-remote https://github.com/git-tfs/git-tfs.git refs/heads/master
> git rev-parse HEAD
> git status
  1. Set the auth.targets file with with your OAuth token (see auth.targets.example)

  2. Do a dry run of the release. Include the version (e.g. X.Y.Z) and the name of a changelog file (optional).

> msbuild Release.proj /t:Release /p:Version=X.Y.Z
  1. Build the release. Include the version (e.g. X.Y.Z) and the name of a changelog file (optional).
> msbuild Release.proj /t:Release /p:Version=X.Y.Z;DryRun=False