<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>gittf Wiki Rss Feed</title><link>https://gittf.codeplex.com/</link><description>gittf Wiki Rss Description</description><item><title>New Comment on "Checkin"</title><link>https://gittf.codeplex.com/wikipage?title=Checkin&amp;ANCHOR#C27401</link><description>I believe the --deep option is enabled by default if you cloned your repository with --deep.</description><author>brianlow</author><pubDate>Mon, 06 May 2013 17:03:25 GMT</pubDate><guid isPermaLink="false">New Comment on "Checkin" 20130506050325P</guid></item><item><title>Updated Wiki: Home</title><link>http://gittf.codeplex.com/wikipage?version=22</link><description>&lt;div class="wikidoc"&gt;
&lt;p&gt;&lt;strong&gt;Project Description&lt;/strong&gt;&lt;br&gt;
Git-TF is a set of cross-platform, command line tools that facilitate sharing of changes between TFS and Git.&lt;br&gt;
&lt;br&gt;
These tools make it easy to clone sources from TFS, fetch updates from TFS, and update TFS with changes committed locally in Git.&lt;/p&gt;
&lt;h1&gt;Downloads&lt;/h1&gt;
&lt;h2&gt;Latest Release&lt;/h2&gt;
&lt;p&gt;Get the latest binary release from the &lt;a href="http://www.microsoft.com/en-us/download/details.aspx?id=30474"&gt;
Microsoft download page&lt;/a&gt;.&amp;nbsp; If you want the very latest bits then you could also
&lt;a href="/wikipage?title=how%20to%20build%20the%20project"&gt;build from the source&lt;/a&gt;.&lt;/p&gt;
&lt;h2&gt;Current Build: Git-TF 2.0.2&lt;/h2&gt;
&lt;p&gt;Git-TF 2.0.2 has been released to fix a couple of very important issues around connecting to your hosted instance at visualstudio.com and in using Git-TF with the latest version of Java 7 from Oracle on Mac OS X.&amp;nbsp; In the 2.0 release, the highlights
 also include:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Add associated Work Item information to commit comments &lt;/li&gt;&lt;li&gt;Full support for shelvesets (Shelve, Unshelve, and listing Shelvesets) &lt;/li&gt;&lt;li&gt;Support for file and folder renames when shelving and checking in to TFS &lt;/li&gt;&lt;li&gt;Support for gated builds &lt;/li&gt;&lt;li&gt;Created a &lt;a href="http://chocolatey.org/packages/Git-TF"&gt;Chocolately package&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;Numerous bug fixes including some performance improvements &lt;/li&gt;&lt;/ul&gt;
&lt;h1&gt;Installing Git-TF&lt;/h1&gt;
&lt;p&gt;The easiest way if you are a user of Chocolatey is to type &amp;ldquo;cinst Git-TF&amp;rdquo; at a command prompt on a machine where Chocolatey is installed.&amp;nbsp; But to set up Git-TF manually then do the following steps once you have installed Java:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Extract the contents of git-tf-2.0.1.20130107.zip to a folder on your local machine, i.e. C:\git-tf on Windows, or /user/git-tf on Mac/Linux.
&lt;/li&gt;&lt;li&gt;Add the path where you extracted Git-TF (i.e. C:\git-tf) to your PATH environment variable.
&lt;/li&gt;&lt;li&gt;Add the path where java.exe is installed (i.e. C:\Program Files (x86)\Java\jre7\bin) to your PATH environment variable.
&lt;/li&gt;&lt;/ol&gt;
&lt;h1&gt;Example Usage&lt;/h1&gt;
&lt;h2&gt;Individual developer with a New Repo&lt;/h2&gt;
&lt;p&gt;A typical workflow for an individual developer using the Git-TF tools are as follows.&lt;br&gt;
&lt;br&gt;
&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span class="codeInline"&gt;git tf clone http://myserver:8080/tfs/mycollection $/TeamProjectA/Main&lt;/span&gt;
&lt;/li&gt;&lt;li&gt;&lt;em&gt;Make changes to the file in the Git repo&lt;/em&gt; &lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git commit -a -m &amp;quot;commit one&amp;quot; (commit changes locally)
&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;em&gt;Make more changes&lt;/em&gt; &lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git commit -a -m &amp;quot;commit two&amp;quot; &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf pull --rebase &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf checkin &lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;
&lt;h2&gt;Development Team with an Existing Repo&lt;/h2&gt;
&lt;p&gt;For a team working with an existing Git repo, a developer sharing changes to TFS using Git-TF would use the following workflow. For details, see Working with Teams.&lt;br&gt;
&lt;br&gt;
&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span class="codeInline"&gt;git tf configure http://myserver:8080/tfs/mycollection $/TeamProjectA/Main
&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf pull &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git commit -a -m &amp;quot;merge commit&amp;quot; &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf checkin &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git push &lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;
&lt;h1&gt;Commands&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="/wikipage?title=Help&amp;referringTitle=Home"&gt;Help&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Clone&amp;referringTitle=Home"&gt;Clone&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Configure&amp;referringTitle=Home"&gt;Configure&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Checkin&amp;referringTitle=Home"&gt;Checkin&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Fetch&amp;referringTitle=Home"&gt;Fetch&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Pull&amp;referringTitle=Home"&gt;Pull&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Shelve&amp;referringTitle=Home"&gt;Shelve&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Shelvesets&amp;referringTitle=Home"&gt;Shelvesets&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Unshelve&amp;referringTitle=Home"&gt;Unshelve&lt;/a&gt; &lt;/li&gt;&lt;/ul&gt;
&lt;h1&gt;Contributing&lt;/h1&gt;
&lt;p&gt;Interested in contributing? &lt;a href="/wikipage?title=Contributing&amp;referringTitle=Home"&gt;
Learn about how you can contribute&lt;/a&gt;.&lt;/p&gt;
&lt;h1&gt;Additional resources&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="/wikipage?title=Working%20with%20Teams&amp;referringTitle=Home"&gt;Working with Teams&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=How%20to%20build%20the%20project&amp;referringTitle=Home"&gt;How to build the project&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Recommended%20Git%20Settings"&gt;Recommended Git Settings&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;h1&gt;Articles about Git-TF&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/visualstudioalm/archive/2012/10/19/building-ios-apps-in-tfs.aspx"&gt;Building iOS Apps in TFS using Git-TF&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/ethomson/archive/2012/08/28/team-foundation-server-and-xcode-projects-with-git-tf.aspx"&gt;Team Foundation Server and Xcode projects with Git-TF&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>martin</author><pubDate>Fri, 15 Feb 2013 17:47:59 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20130215054759P</guid></item><item><title>New Comment on "Building from command line"</title><link>http://gittf.codeplex.com/wikipage?title=Building from command line&amp;ANCHOR#C26456</link><description>This now builds correctly thanks.</description><author>l_o_l</author><pubDate>Thu, 07 Feb 2013 14:09:24 GMT</pubDate><guid isPermaLink="false">New Comment on "Building from command line" 20130207020924P</guid></item><item><title>New Comment on "Building from command line"</title><link>http://gittf.codeplex.com/wikipage?title=Building from command line&amp;ANCHOR#C26437</link><description>For some reason, the version of maven that comes with OSX does not build git-tf successfully. If you use the the maven binaries from the apache download site, git-tf compiles perfectly &amp;#40;that is on OSX 10.8&amp;#41;.</description><author>amaechler</author><pubDate>Tue, 05 Feb 2013 18:46:03 GMT</pubDate><guid isPermaLink="false">New Comment on "Building from command line" 20130205064603P</guid></item><item><title>Updated Wiki: Home</title><link>http://gittf.codeplex.com/wikipage?version=21</link><description>&lt;div class="wikidoc"&gt;
&lt;p&gt;&lt;strong&gt;Project Description&lt;/strong&gt;&lt;br&gt;
Git-TF is a set of cross-platform, command line tools that facilitate sharing of changes between TFS and Git.&lt;br&gt;
&lt;br&gt;
These tools make it easy to clone sources from TFS, fetch updates from TFS, and update TFS with changes committed locally in Git.&lt;/p&gt;
&lt;h1&gt;Downloads&lt;/h1&gt;
&lt;h2&gt;Latest Release&lt;/h2&gt;
&lt;p&gt;Get the latest binary release from the &lt;a href="http://www.microsoft.com/en-us/download/details.aspx?id=30474"&gt;
Microsoft download page&lt;/a&gt;.&amp;nbsp; If you want the very latest bits then you could also
&lt;a href="/wikipage?title=how%20to%20build%20the%20project"&gt;build from the source&lt;/a&gt;.&lt;/p&gt;
&lt;h2&gt;Current Build: Git-TF 2.0.1&lt;/h2&gt;
&lt;p&gt;Git-TF 2.0.1 has been released to fix a couple of very important issues around connecting to your hosted instance at visualstudio.com and in using Git-TF with the latest version of Java 7 from Oracle on Mac OS X.&amp;nbsp; In the 2.0 release, the highlights
 also include:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Full support for shelvesets (Shelve, Unshelve, and listing Shelvesets) &lt;/li&gt;&lt;li&gt;Support for file and folder renames when shelving and checking in to TFS &lt;/li&gt;&lt;li&gt;Support for gated builds &lt;/li&gt;&lt;li&gt;Created a &lt;a href="http://chocolatey.org/packages/Git-TF"&gt;Chocolately package&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;Numerous bug fixes including some performance improvements &lt;/li&gt;&lt;/ul&gt;
&lt;h1&gt;Installing Git-TF&lt;/h1&gt;
&lt;p&gt;The easiest way if you are a user of Chocolatey is to type &amp;ldquo;cinst Git-TF&amp;rdquo; at a command prompt on a machine where Chocolatey is installed.&amp;nbsp; But to set up Git-TF manually then do the following steps once you have installed Java:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Extract the contents of git-tf-2.0.1.20130107.zip to a folder on your local machine, i.e. C:\git-tf on Windows, or /user/git-tf on Mac/Linux.
&lt;/li&gt;&lt;li&gt;Add the path where you extracted Git-TF (i.e. C:\git-tf) to your PATH environment variable.
&lt;/li&gt;&lt;li&gt;Add the path where java.exe is installed (i.e. C:\Program Files (x86)\Java\jre7\bin) to your PATH environment variable.
&lt;/li&gt;&lt;/ol&gt;
&lt;h1&gt;Example Usage&lt;/h1&gt;
&lt;h2&gt;Individual developer with a New Repo&lt;/h2&gt;
&lt;p&gt;A typical workflow for an individual developer using the Git-TF tools are as follows.&lt;br&gt;
&lt;br&gt;
&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span class="codeInline"&gt;git tf clone http://myserver:8080/tfs/mycollection $/TeamProjectA/Main&lt;/span&gt;
&lt;/li&gt;&lt;li&gt;&lt;em&gt;Make changes to the file in the Git repo&lt;/em&gt; &lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git commit -a -m &amp;quot;commit one&amp;quot; (commit changes locally)
&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;em&gt;Make more changes&lt;/em&gt; &lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git commit -a -m &amp;quot;commit two&amp;quot; &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf pull --rebase &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf checkin &lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;
&lt;h2&gt;Development Team with an Existing Repo&lt;/h2&gt;
&lt;p&gt;For a team working with an existing Git repo, a developer sharing changes to TFS using Git-TF would use the following workflow. For details, see Working with Teams.&lt;br&gt;
&lt;br&gt;
&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span class="codeInline"&gt;git tf configure http://myserver:8080/tfs/mycollection $/TeamProjectA/Main
&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf pull &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git commit -a -m &amp;quot;merge commit&amp;quot; &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf checkin &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git push &lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;
&lt;h1&gt;Commands&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="/wikipage?title=Help&amp;referringTitle=Home"&gt;Help&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Clone&amp;referringTitle=Home"&gt;Clone&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Configure&amp;referringTitle=Home"&gt;Configure&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Checkin&amp;referringTitle=Home"&gt;Checkin&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Fetch&amp;referringTitle=Home"&gt;Fetch&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Pull&amp;referringTitle=Home"&gt;Pull&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Shelve&amp;referringTitle=Home"&gt;Shelve&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Shelvesets&amp;referringTitle=Home"&gt;Shelvesets&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Unshelve&amp;referringTitle=Home"&gt;Unshelve&lt;/a&gt; &lt;/li&gt;&lt;/ul&gt;
&lt;h1&gt;Contributing&lt;/h1&gt;
&lt;p&gt;Interested in contributing? &lt;a href="/wikipage?title=Contributing&amp;referringTitle=Home"&gt;
Learn about how you can contribute&lt;/a&gt;.&lt;/p&gt;
&lt;h1&gt;Additional resources&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="/wikipage?title=Working%20with%20Teams&amp;referringTitle=Home"&gt;Working with Teams&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=How%20to%20build%20the%20project&amp;referringTitle=Home"&gt;How to build the project&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Recommended%20Git%20Settings"&gt;Recommended Git Settings&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;h1&gt;Articles about Git-TF&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/visualstudioalm/archive/2012/10/19/building-ios-apps-in-tfs.aspx"&gt;Building iOS Apps in TFS using Git-TF&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/ethomson/archive/2012/08/28/team-foundation-server-and-xcode-projects-with-git-tf.aspx"&gt;Team Foundation Server and Xcode projects with Git-TF&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>arukhlin</author><pubDate>Tue, 05 Feb 2013 16:05:22 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20130205040522P</guid></item><item><title>Updated Wiki: Home</title><link>http://gittf.codeplex.com/wikipage?version=20</link><description>&lt;div class="wikidoc"&gt;
&lt;p&gt;&lt;strong&gt;Project Description&lt;/strong&gt;&lt;br&gt;
Git-TF is a set of cross-platform, command line tools that facilitate sharing of changes between TFS and Git.&lt;br&gt;
&lt;br&gt;
These tools make it easy to clone sources from TFS, fetch updates from TFS, and update TFS with changes committed locally in Git.&lt;/p&gt;
&lt;h1&gt;Downloads&lt;/h1&gt;
&lt;h2&gt;Latest Release&lt;/h2&gt;
&lt;p&gt;Get the latest binary release from the &lt;a href="http://www.microsoft.com/en-us/download/details.aspx?id=30474"&gt;
Microsoft download page&lt;/a&gt;.&amp;nbsp; If you want the very latest bits then you could also
&lt;a href="/wikipage?title=how%20to%20build%20the%20project"&gt;build from the source&lt;/a&gt;.&lt;/p&gt;
&lt;h2&gt;Current Build: Git-TF 2.0.1&lt;/h2&gt;
&lt;p&gt;Git-TF 2.0.1 has been released to fix a couple of very important issues around connecting to your hosted instance at visualstudio.com and in using Git-TF with the latest version of Java 7 from Oracle on Mac OS X.&amp;nbsp; In the 2.0 release, the highlights
 also include:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Full support for shelvesets (Shelve, Unshelve, and listing Shelvesets) &lt;/li&gt;&lt;li&gt;Support for file and folder renames when shelving and checking in to TFS &lt;/li&gt;&lt;li&gt;Support for gated builds &lt;/li&gt;&lt;li&gt;Created a &lt;a href="http://chocolatey.org/packages/Git-TF"&gt;Chocolately package&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;Numerous bug fixes including some performance improvements &lt;/li&gt;&lt;/ul&gt;
&lt;h1&gt;Installing Git-TF&lt;/h1&gt;
&lt;p&gt;The easiest way if you are a user of Chocolatey is to type &amp;ldquo;cinst Git-TF&amp;rdquo; at a command prompt on a machine where Chocolatey is installed.&amp;nbsp; But to set up Git-TF manually then do the following steps once you have installed Java:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Extract the contents of git-tf-2.0.1.20130107.zip to a folder on your local machine, i.e. C:\git-tf on Windows, or /user/git-tf on Mac/Linux.
&lt;/li&gt;&lt;li&gt;Add the path where you extracted Git-TF (i.e. C:\git-tf) to your PATH environment variable.
&lt;/li&gt;&lt;li&gt;Add the path where java.exe is installed (i.e. C:\Program Files (x86)\Java\jre7\bin) to your PATH environment variable.
&lt;/li&gt;&lt;/ol&gt;
&lt;h1&gt;Example Usage&lt;/h1&gt;
&lt;h2&gt;Individual developer with a New Repo&lt;/h2&gt;
&lt;p&gt;A typical workflow for an individual developer using the Git-TF tools are as follows.&lt;br&gt;
&lt;br&gt;
&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span class="codeInline"&gt;git tf clone &lt;a href="http://myserver:8080/tfs/mycollection"&gt;
http://myserver:8080/tfs/mycollection&lt;/a&gt; $/TeamProjectA/Main&lt;/span&gt; &lt;/li&gt;&lt;li&gt;&lt;em&gt;Make changes to the file in the Git repo&lt;/em&gt; &lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git commit -a -m &amp;quot;commit one&amp;quot; (commit changes locally)
&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;em&gt;Make more changes&lt;/em&gt; &lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git commit -a -m &amp;quot;commit two&amp;quot; &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf pull --rebase &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf checkin &lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;
&lt;h2&gt;Development Team with an Existing Repo&lt;/h2&gt;
&lt;p&gt;For a team working with an existing Git repo, a developer sharing changes to TFS using Git-TF would use the following workflow. For details, see Working with Teams.&lt;br&gt;
&lt;br&gt;
&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span class="codeInline"&gt;git tf configure &lt;a href="http://myserver:8080/tfs/mycollection"&gt;
http://myserver:8080/tfs/mycollection&lt;/a&gt; $/TeamProjectA/Main &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf pull &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git commit -a -m &amp;quot;merge commit&amp;quot; &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf checkin &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git push &lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;
&lt;h1&gt;Commands&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="/wikipage?title=Help&amp;referringTitle=Home"&gt;Help&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Clone&amp;referringTitle=Home"&gt;Clone&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Configure&amp;referringTitle=Home"&gt;Configure&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Checkin&amp;referringTitle=Home"&gt;Checkin&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Fetch&amp;referringTitle=Home"&gt;Fetch&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Pull&amp;referringTitle=Home"&gt;Pull&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Shelve&amp;referringTitle=Home"&gt;Shelve&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Shelvesets&amp;referringTitle=Home"&gt;Shelvesets&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Unshelve&amp;referringTitle=Home"&gt;Unshelve&lt;/a&gt; &lt;/li&gt;&lt;/ul&gt;
&lt;h1&gt;Contributing&lt;/h1&gt;
&lt;p&gt;Interested in contributing? &lt;a href="/wikipage?title=Contributing&amp;referringTitle=Home"&gt;
Learn about how you can contribute&lt;/a&gt;.&lt;/p&gt;
&lt;h1&gt;Additional resources&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="/wikipage?title=Working%20with%20Teams&amp;referringTitle=Home"&gt;Working with Teams&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=How%20to%20build%20the%20project&amp;referringTitle=Home"&gt;How to build the project&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Recommended%20Git%20Settings"&gt;Recommended Git Settings&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;h1&gt;Articles about Git-TF&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/visualstudioalm/archive/2012/10/19/building-ios-apps-in-tfs.aspx"&gt;Building iOS Apps in TFS using Git-TF&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/ethomson/archive/2012/08/28/team-foundation-server-and-xcode-projects-with-git-tf.aspx"&gt;Team Foundation Server and Xcode projects with Git-TF&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>arukhlin</author><pubDate>Tue, 05 Feb 2013 16:04:13 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20130205040413P</guid></item><item><title>New Comment on "Building from command line"</title><link>http://gittf.codeplex.com/wikipage?title=Building from command line&amp;ANCHOR#C26369</link><description>Hi l_o_l,&amp;#10;&amp;#10;Thanks for your finding. The bug in the unit test has been fixed. Could you please try again with the latest sources&amp;#63;&amp;#10;&amp;#10;Alex</description><author>arukhlin</author><pubDate>Wed, 30 Jan 2013 21:08:03 GMT</pubDate><guid isPermaLink="false">New Comment on "Building from command line" 20130130090803P</guid></item><item><title>Updated Wiki: Home</title><link>http://gittf.codeplex.com/wikipage?version=19</link><description>&lt;div class="wikidoc"&gt;
&lt;p&gt;&lt;strong&gt;Project Description&lt;/strong&gt;&lt;br&gt;
Git-TF is a set of cross-platform, command line tools that facilitate sharing of changes between TFS and Git.&lt;br&gt;
&lt;br&gt;
These tools make it easy to clone sources from TFS, fetch updates from TFS, and update TFS with changes committed locally in Git.&lt;/p&gt;
&lt;h1&gt;Downloads&lt;/h1&gt;
&lt;h2&gt;Latest Release&lt;/h2&gt;
&lt;p&gt;Get the latest binary release from the &lt;a href="http://www.microsoft.com/en-us/download/details.aspx?id=30474"&gt;
Microsoft download page&lt;/a&gt;.&amp;nbsp; If you want the very latest bits then you could also
&lt;a href="/wikipage?title=how%20to%20build%20the%20project"&gt;build from the source&lt;/a&gt;.&lt;/p&gt;
&lt;h2&gt;Current Build: Git-TF 2.0.1&lt;/h2&gt;
&lt;p&gt;Git-TF 2.0.1 has been released to fix a couple of very important issues around connecting to your hosted instance at visualstudio.com and in using Git-TF with the latest version of Java 7 from Oracle on Mac OS X.&amp;nbsp; In the 2.0 release, the highlights
 also include:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Full support for shelvesets (Shelve, Unshelve, and listing Shelvesets) &lt;/li&gt;&lt;li&gt;Support for file and folder renames when shelving and checking in to TFS &lt;/li&gt;&lt;li&gt;Support for gated builds &lt;/li&gt;&lt;li&gt;Created a &lt;a href="http://chocolatey.org/packages/Git-TF"&gt;Chocolately package&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;Numerous bug fixes including some performance improvements &lt;/li&gt;&lt;/ul&gt;
&lt;h1&gt;Installing Git-TF&lt;/h1&gt;
&lt;p&gt;The easiest way if you are a user of Chocolatey is to type &amp;ldquo;cinst Git-TF&amp;rdquo; at a command prompt on a machine where Chocolatey is installed.&amp;nbsp; But to set up Git-TF manually then do the following steps once you have installed Java:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Extract the contents of git-tf-2.0.1.20130107.zip to a folder on your local machine, i.e. C:\git-tf on Windows, or /user/git-tf on Mac/Linux.
&lt;/li&gt;&lt;li&gt;Add the path where you extracted Git-TF (i.e. C:\git-tf) to your PATH environment variable.
&lt;/li&gt;&lt;li&gt;Add the path where java.exe is installed (i.e. C:\Program Files (x86)\Java\jre7\bin) to your PATH environment variable.
&lt;/li&gt;&lt;/ol&gt;
&lt;h1&gt;Example Usage&lt;/h1&gt;
&lt;h2&gt;Individual developer with a New Repo&lt;/h2&gt;
&lt;p&gt;A typical workflow for an individual developer using the Git-TF tools are as follows.&lt;br&gt;
&lt;br&gt;
&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span class="codeInline"&gt;git tf clone http://myserver:8080/tfs $/TeamProjectA/Main&lt;/span&gt;
&lt;/li&gt;&lt;li&gt;&lt;em&gt;Make changes to the file in the Git repo&lt;/em&gt; &lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git commit -a -m &amp;quot;commit one&amp;quot; (commit changes locally)
&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;em&gt;Make more changes&lt;/em&gt; &lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git commit -a -m &amp;quot;commit two&amp;quot; &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf pull --rebase &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf checkin &lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;
&lt;h2&gt;Development Team with an Existing Repo&lt;/h2&gt;
&lt;p&gt;For a team working with an existing Git repo, a developer sharing changes to TFS using Git-TF would use the following workflow. For details, see Working with Teams.&lt;br&gt;
&lt;br&gt;
&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span class="codeInline"&gt;git tf configure http://myserver:8080/tfs $/TeamProjectA/Main
&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf pull &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git commit -a -m &amp;quot;merge commit&amp;quot; &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf checkin &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git push &lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;
&lt;h1&gt;Commands&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="/wikipage?title=Help&amp;referringTitle=Home"&gt;Help&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Clone&amp;referringTitle=Home"&gt;Clone&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Configure&amp;referringTitle=Home"&gt;Configure&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Checkin&amp;referringTitle=Home"&gt;Checkin&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Fetch&amp;referringTitle=Home"&gt;Fetch&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Pull&amp;referringTitle=Home"&gt;Pull&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Shelve&amp;referringTitle=Home"&gt;Shelve&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Shelvesets&amp;referringTitle=Home"&gt;Shelvesets&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Unshelve&amp;referringTitle=Home"&gt;Unshelve&lt;/a&gt; &lt;/li&gt;&lt;/ul&gt;
&lt;h1&gt;Contributing&lt;/h1&gt;
&lt;p&gt;Interested in contributing? &lt;a href="/wikipage?title=Contributing&amp;referringTitle=Home"&gt;
Learn about how you can contribute&lt;/a&gt;.&lt;/p&gt;
&lt;h1&gt;Additional resources&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="/wikipage?title=Working%20with%20Teams&amp;referringTitle=Home"&gt;Working with Teams&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=How%20to%20build%20the%20project&amp;referringTitle=Home"&gt;How to build the project&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Recommended%20Git%20Settings"&gt;Recommended Git Settings&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;h1&gt;Articles about Git-TF&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/visualstudioalm/archive/2012/10/19/building-ios-apps-in-tfs.aspx"&gt;Building iOS Apps in TFS using Git-TF&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/ethomson/archive/2012/08/28/team-foundation-server-and-xcode-projects-with-git-tf.aspx"&gt;Team Foundation Server and Xcode projects with Git-TF&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>martin</author><pubDate>Wed, 30 Jan 2013 02:27:43 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20130130022743A</guid></item><item><title>New Comment on "Building from command line"</title><link>http://gittf.codeplex.com/wikipage?title=Building from command line&amp;ANCHOR#C26270</link><description>No luck building the project, I get the following error&amp;#58;&amp;#10;&amp;#10;-------------------------------------------------------&amp;#10; T E S T S&amp;#10;-------------------------------------------------------&amp;#10;Running com.microsoft.gittf.client.clc.arguments.parser.ArgumentParserTest&amp;#10;Tests run&amp;#58; 1, Failures&amp;#58; 0, Errors&amp;#58; 1, Skipped&amp;#58; 0, Time elapsed&amp;#58; 0.033 sec &amp;#60;&amp;#60;&amp;#60; FAILURE&amp;#33;&amp;#10;Running com.microsoft.gittf.client.clc.MessagesTest&amp;#10;Processed properties file src&amp;#92;main&amp;#92;resources&amp;#47;com&amp;#47;microsoft&amp;#47;gittf&amp;#47;client&amp;#47;clc&amp;#47;messages.properties&amp;#10;Found 185 properties.&amp;#10;Found 42 java files.&amp;#10;Found 46 parameterized messages.&amp;#10;Found 251 message references.&amp;#10;Tests run&amp;#58; 1, Failures&amp;#58; 0, Errors&amp;#58; 0, Skipped&amp;#58; 0, Time elapsed&amp;#58; 0.048 sec&amp;#10;&amp;#10;Results &amp;#58;&amp;#10;&amp;#10;Tests in error&amp;#58;&amp;#10;  initializationError&amp;#40;com.microsoft.gittf.client.clc.arguments.parser.ArgumentParserTest&amp;#41;&amp;#58; &amp;#40;class&amp;#58; com&amp;#47;microsoft&amp;#47;gittf&amp;#47;client&amp;#47;clc&amp;#47;arguments&amp;#47;ArgumentOptions, method&amp;#58; &amp;#60;init&amp;#62; signature&amp;#58; &amp;#40;I&amp;#41;V&amp;#41; Constructor must call super&amp;#40;&amp;#41; or this&amp;#40;&amp;#41;</description><author>l_o_l</author><pubDate>Tue, 22 Jan 2013 18:13:27 GMT</pubDate><guid isPermaLink="false">New Comment on "Building from command line" 20130122061327P</guid></item><item><title>New Comment on "Checkin"</title><link>http://gittf.codeplex.com/wikipage?title=Checkin&amp;ANCHOR#C26223</link><description>--renamemode&amp;#61;all&amp;#10;--renamemode&amp;#61;justfiles &amp;#40;this is the default in v2.0.1 release Jan 8, 2013&amp;#41;&amp;#10;&amp;#10;Affects folder renames but not sure exactly how.</description><author>brianlow</author><pubDate>Wed, 16 Jan 2013 21:23:33 GMT</pubDate><guid isPermaLink="false">New Comment on "Checkin" 20130116092333P</guid></item><item><title>New Comment on "Checkin"</title><link>http://gittf.codeplex.com/wikipage?title=Checkin&amp;ANCHOR#C26186</link><description>can you add some docs here surrounding what happens on a successful checkin&amp;#63;&amp;#10;&amp;#10;I stumbled across this on a repo that I&amp;#39;m working on, are these only made if a successful checkin happens&amp;#63;&amp;#58; &amp;#10;&amp;#10;&amp;#96;&amp;#96;&amp;#96;&amp;#10;&amp;#36; git tag&amp;#10;TFS_C32171&amp;#10;TFS_C32319&amp;#10;TFS_C32320&amp;#10;TFS_C32321&amp;#10;TFS_C32322&amp;#10;&amp;#96;&amp;#96;&amp;#96;</description><author>weisjohn</author><pubDate>Mon, 14 Jan 2013 02:45:14 GMT</pubDate><guid isPermaLink="false">New Comment on "Checkin" 20130114024514A</guid></item><item><title>Updated Wiki: Home</title><link>https://gittf.codeplex.com/wikipage?version=18</link><description>&lt;div class="wikidoc"&gt;
&lt;p&gt;&lt;strong&gt;Project Description&lt;/strong&gt;&lt;br&gt;
Git-TF is a set of cross-platform, command line tools that facilitate sharing of changes between TFS and Git.&lt;br&gt;
&lt;br&gt;
These tools make it easy to clone sources from TFS, fetch updates from TFS, and update TFS with changes committed locally in Git.&lt;/p&gt;
&lt;h1&gt;Downloads&lt;/h1&gt;
&lt;h2&gt;Latest Release&lt;/h2&gt;
&lt;p&gt;Get the latest binary release from the &lt;a href="http://www.microsoft.com/en-us/download/details.aspx?id=30474"&gt;
Microsoft download page&lt;/a&gt;.&amp;nbsp; If you want the very latest bits then you could also
&lt;a href="/wikipage?title=how%20to%20build%20the%20project"&gt;build from the source&lt;/a&gt;.&lt;/p&gt;
&lt;h2&gt;Current Build: Git-TF 2.0.1&lt;/h2&gt;
&lt;p&gt;Git-TF 2.0.1 has been released to fix a couple of very important issues around connecting to your hosted instance at visualstudio.com and in using Git-TF with the latest version of Java 7 from Oracle on Mac OS X.&amp;nbsp; In the 2.0 release, the highlights
 also include:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Full support for shelvesets (Shelve, Unshelve, and listing Shelvesets) &lt;/li&gt;&lt;li&gt;Support for file and folder renames when shelving and checking in to TFS &lt;/li&gt;&lt;li&gt;Support for gated builds &lt;/li&gt;&lt;li&gt;Created a &lt;a href="http://chocolatey.org/packages/Git-TF/2.0.0.20121030"&gt;Chocolately package&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;Numerous bug fixes including some performance improvements &lt;/li&gt;&lt;/ul&gt;
&lt;h1&gt;Installing Git-TF&lt;/h1&gt;
&lt;p&gt;The easiest way if you are a user of Chocolatey is to type “cinst Git-TF” at a command prompt on a machine where Chocolatey is installed.&amp;nbsp; But to set up Git-TF manually then do the following steps once you have installed Java:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Extract the contents of git-tf-2.0.1.20130107.zip to a folder on your local machine, i.e. C:\git-tf on Windows, or /user/git-tf on Mac/Linux.
&lt;/li&gt;&lt;li&gt;Add the path where you extracted Git-TF (i.e. C:\git-tf) to your PATH environment variable.
&lt;/li&gt;&lt;li&gt;Add the path where java.exe is installed (i.e. C:\Program Files (x86)\Java\jre7\bin) to your PATH environment variable.
&lt;/li&gt;&lt;/ol&gt;
&lt;h1&gt;Example Usage&lt;/h1&gt;
&lt;h2&gt;Individual developer with a New Repo&lt;/h2&gt;
&lt;p&gt;A typical workflow for an individual developer using the Git-TF tools are as follows.&lt;br&gt;
&lt;br&gt;
&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span class="codeInline"&gt;git tf clone http://myserver:8080/tfs $/TeamProjectA/Main&lt;/span&gt;
&lt;/li&gt;&lt;li&gt;&lt;em&gt;Make changes to the file in the Git repo&lt;/em&gt; &lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git commit -a -m &amp;quot;commit one&amp;quot; (commit changes locally)
&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;em&gt;Make more changes&lt;/em&gt; &lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git commit -a -m &amp;quot;commit two&amp;quot; &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf pull --rebase &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf checkin &lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;
&lt;h2&gt;Development Team with an Existing Repo&lt;/h2&gt;
&lt;p&gt;For a team working with an existing Git repo, a developer sharing changes to TFS using Git-TF would use the following workflow. For details, see Working with Teams.&lt;br&gt;
&lt;br&gt;
&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span class="codeInline"&gt;git tf configure http://myserver:8080/tfs $/TeamProjectA/Main
&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf pull &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git commit -a -m &amp;quot;merge commit&amp;quot; &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf checkin &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git push &lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;
&lt;h1&gt;Commands&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="/wikipage?title=Help&amp;referringTitle=Home"&gt;Help&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Clone&amp;referringTitle=Home"&gt;Clone&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Configure&amp;referringTitle=Home"&gt;Configure&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Checkin&amp;referringTitle=Home"&gt;Checkin&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Fetch&amp;referringTitle=Home"&gt;Fetch&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Pull&amp;referringTitle=Home"&gt;Pull&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Shelve&amp;referringTitle=Home"&gt;Shelve&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Shelvesets&amp;referringTitle=Home"&gt;Shelvesets&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Unshelve&amp;referringTitle=Home"&gt;Unshelve&lt;/a&gt; &lt;/li&gt;&lt;/ul&gt;
&lt;h1&gt;Contributing&lt;/h1&gt;
&lt;p&gt;Interested in contributing? &lt;a href="/wikipage?title=Contributing&amp;referringTitle=Home"&gt;
Learn about how you can contribute&lt;/a&gt;.&lt;/p&gt;
&lt;h1&gt;Additional resources&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="/wikipage?title=Working%20with%20Teams&amp;referringTitle=Home"&gt;Working with Teams&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=How%20to%20build%20the%20project&amp;referringTitle=Home"&gt;How to build the project&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Recommended%20Git%20Settings"&gt;Recommended Git Settings&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;h1&gt;Articles about Git-TF&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/visualstudioalm/archive/2012/10/19/building-ios-apps-in-tfs.aspx"&gt;Building iOS Apps in TFS using Git-TF&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/ethomson/archive/2012/08/28/team-foundation-server-and-xcode-projects-with-git-tf.aspx"&gt;Team Foundation Server and Xcode projects with Git-TF&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>martin</author><pubDate>Wed, 09 Jan 2013 18:23:09 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20130109062309P</guid></item><item><title>Updated Wiki: Home</title><link>http://gittf.codeplex.com/wikipage?version=17</link><description>&lt;div class="wikidoc"&gt;
&lt;p&gt;&lt;strong&gt;Project Description&lt;/strong&gt;&lt;br&gt;
Git-TF is a set of cross-platform, command line tools that facilitate sharing of changes between TFS and Git.&lt;br&gt;
&lt;br&gt;
These tools make it easy to clone sources from TFS, fetch updates from TFS, and update TFS with changes committed locally in Git.&lt;/p&gt;
&lt;h1&gt;Downloads&lt;/h1&gt;
&lt;h2&gt;Latest Release&lt;/h2&gt;
&lt;p&gt;Get the latest binary release from the &lt;a href="http://www.microsoft.com/en-us/download/details.aspx?id=30474"&gt;
Microsoft download page&lt;/a&gt;.&amp;nbsp; If you want the very latest bits then you could also
&lt;a href="/wikipage?title=how%20to%20build%20the%20project"&gt;build from the source&lt;/a&gt;.&lt;/p&gt;
&lt;h2&gt;Current Build: Git-TF 2.0.1&lt;/h2&gt;
&lt;p&gt;Git-TF 2.0.1 has been released to fix a couple of very important issues around connecting to your hosted instance at visualstudio.com and in using Git-TF with the latest version of Java 7 from Oracle on Mac OS X.&amp;nbsp; In the 2.0 release, the highlights
 also include:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Full support for shelvesets (Shelve, Unshelve, and listing Shelvesets) &lt;/li&gt;&lt;li&gt;Support for file and folder renames when shelving and checking in to TFS &lt;/li&gt;&lt;li&gt;Support for gated builds &lt;/li&gt;&lt;li&gt;Created a &lt;a href="http://chocolatey.org/packages/Git-TF/2.0.0.20121030"&gt;Chocolately package&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;Numerous bug fixes including some performance improvements &lt;/li&gt;&lt;/ul&gt;
&lt;h1&gt;Installing Git-TF&lt;/h1&gt;
&lt;p&gt;The easiest way if you are a user of Chocolatey is to type &amp;ldquo;cinst Git-TF&amp;rdquo; at a command prompt on a machine where Chocolatey is installed.&amp;nbsp; But to set up Git-TF manually then do the following steps once you have installed Java:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Extract the contents of git-tf-2.0.1.20130107.zip to a folder on your local machine, i.e. C:\git-tf on Windows, or /user/git-tf on Mac/Linux.
&lt;/li&gt;&lt;li&gt;Add the path where you extracted Git-TF (i.e. C:\git-tf) to your PATH environment variable.
&lt;/li&gt;&lt;li&gt;Add the path where java.exe is installed (i.e. C:\Program Files (x86)\Java\jre7\bin) to your PATH environment variable.
&lt;/li&gt;&lt;/ol&gt;
&lt;h1&gt;Example Usage&lt;/h1&gt;
&lt;h2&gt;Individual developer with a New Repo&lt;/h2&gt;
&lt;p&gt;A typical workflow for an individual developer using the Git-TF tools are as follows.&lt;br&gt;
&lt;br&gt;
&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span class="codeInline"&gt;git tf clone http://myserver:8080/tfs $/TeamProjectA/Main&lt;/span&gt;
&lt;/li&gt;&lt;li&gt;&lt;em&gt;Make changes to the file in the Git repo&lt;/em&gt; &lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git commit -a -m &amp;quot;commit one&amp;quot; (commit changes locally)
&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;em&gt;Make more changes&lt;/em&gt; &lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git commit -a -m &amp;quot;commit two&amp;quot; &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf pull --rebase &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf checkin &lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;
&lt;h2&gt;Development Team with an Existing Repo&lt;/h2&gt;
&lt;p&gt;For a team working with an existing Git repo, a developer sharing changes to TFS using Git-TF would use the following workflow. For details, see Working with Teams.&lt;br&gt;
&lt;br&gt;
&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span class="codeInline"&gt;git tf configure http://myserver:8080/tfs $/TeamProjectA/Main
&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf pull &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git commit -a -m &amp;quot;merge commit&amp;quot; &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf checkin &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git push &lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;
&lt;h1&gt;Commands&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="/gittf/wikipage?title=Help&amp;referringTitle=Home"&gt;Help&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Clone&amp;referringTitle=Home"&gt;Clone&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Configure&amp;referringTitle=Home"&gt;Configure&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Checkin&amp;referringTitle=Home"&gt;Checkin&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Fetch&amp;referringTitle=Home"&gt;Fetch&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Pull&amp;referringTitle=Home"&gt;Pull&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Shelve&amp;referringTitle=Home"&gt;Shelve&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Shelvesets&amp;referringTitle=Home"&gt;Shelvesets&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Unshelve&amp;referringTitle=Home"&gt;Unshelve&lt;/a&gt; &lt;/li&gt;&lt;/ul&gt;
&lt;h1&gt;Contributing&lt;/h1&gt;
&lt;p&gt;Interested in contributing? &lt;a href="/wikipage?title=Contributing&amp;referringTitle=Home"&gt;
Learn about how you can contribute&lt;/a&gt;.&lt;/p&gt;
&lt;h1&gt;Additional resources&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="/wikipage?title=Working%20with%20Teams&amp;referringTitle=Home"&gt;Working with Teams&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=How%20to%20build%20the%20project&amp;referringTitle=Home"&gt;How to build the project&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Recommended%20Git%20Settings"&gt;Recommended Git Settings&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;h1&gt;Articles about Git-TF&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/visualstudioalm/archive/2012/10/19/building-ios-apps-in-tfs.aspx"&gt;Building iOS Apps in TFS using Git-TF&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/ethomson/archive/2012/08/28/team-foundation-server-and-xcode-projects-with-git-tf.aspx"&gt;Team Foundation Server and Xcode projects with Git-TF&lt;/a&gt;
&lt;/li&gt;&lt;/ul&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>martin</author><pubDate>Tue, 08 Jan 2013 19:35:59 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20130108073559P</guid></item><item><title>Updated Wiki: Home</title><link>https://gittf.codeplex.com/wikipage?version=16</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br&gt;
Git-TF is a set of cross-platform, command line tools that facilitate sharing of changes between TFS and Git.&lt;br&gt;
&lt;br&gt;
These tools make it easy to clone sources from TFS, fetch updates from TFS, and update TFS with changes committed locally in Git.&lt;br&gt;
&lt;h1&gt;Downloads&lt;/h1&gt;
&lt;h2&gt;Latest Release&lt;/h2&gt;
Get the latest binary release from the &lt;a href="http://www.microsoft.com/en-us/download/details.aspx?id=30474"&gt;
Microsoft download page&lt;/a&gt;.&amp;nbsp; If you want the very latest bits then you could also
&lt;a href="/wikipage?title=how%20to%20build%20the%20project"&gt;build from the source&lt;/a&gt;.&lt;br&gt;
&lt;h2&gt;Current Build: Git-TF 2.0.1&lt;/h2&gt;
&lt;p&gt;Git-TF 2.0.1 has been released to fix a couple of very important issues around connecting to your hosted instance at visualstudio.com and in using Git-TF with the latest version of Java 7 from Oracle on Mac OS X.&amp;nbsp; In the 2.0 release, the highlights
 also include:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Full support for shelvesets (Shelve, Unshelve, and listing Shelvesets) &lt;/li&gt;&lt;li&gt;Support for file and folder renames when shelving and checking in to TFS &lt;/li&gt;&lt;li&gt;Support for gated builds &lt;/li&gt;&lt;li&gt;Created a &lt;a href="http://chocolatey.org/packages/Git-TF/2.0.0.20121030"&gt;Chocolately package&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;Numerous bug fixes including some performance improvements&lt;/li&gt;&lt;/ul&gt;
&lt;h1&gt;Installing Git-TF&lt;/h1&gt;
&lt;p&gt;The easiest way if you are a user of Chocolatey is to type “cinst gittf” at a command prompt on a machine where Chocolatey is installed.&amp;nbsp; But to set up Git-TF manually then do the following steps once you have installed Java:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Extract the contents of git-tf-2.0.1.20130107.zip to a folder on your local machine, i.e. C:\git-tf on Windows, or /user/git-tf on Mac/Linux.
&lt;/li&gt;&lt;li&gt;Add the path where you extracted Git-TF (i.e. C:\git-tf) to your PATH environment variable.
&lt;/li&gt;&lt;li&gt;Add the path where java.exe is installed (i.e. C:\Program Files (x86)\Java\jre7\bin) to your PATH environment variable.&lt;/li&gt;&lt;/ol&gt;
&lt;h1&gt;Example Usage&lt;/h1&gt;
&lt;h2&gt;Individual developer with a New Repo&lt;/h2&gt;
A typical workflow for an individual developer using the Git-TF tools are as follows.&lt;br&gt;
&lt;br&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span class="codeInline"&gt;git tf clone http://myserver:8080/tfs $/TeamProjectA/Main&lt;/span&gt;
&lt;/li&gt;&lt;li&gt;&lt;i&gt;Make changes to the file in the Git repo&lt;/i&gt; &lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git commit -a -m &amp;quot;commit one&amp;quot; (commit changes locally)
&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;i&gt;Make more changes&lt;/i&gt; &lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git commit -a -m &amp;quot;commit two&amp;quot; &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf pull --rebase &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf checkin &lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;
&lt;h2&gt;Development Team with an Existing Repo&lt;/h2&gt;
For a team working with an existing Git repo, a developer sharing changes to TFS using Git-TF would use the following workflow. For details, see Working with Teams.&lt;br&gt;
&lt;br&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span class="codeInline"&gt;git tf configure http://myserver:8080/tfs $/TeamProjectA/Main
&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf pull &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git commit -a -m &amp;quot;merge commit&amp;quot; &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf checkin &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git push &lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;
&lt;h1&gt;Commands&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="/gittf/wikipage?title=Help&amp;referringTitle=Home"&gt;Help&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Clone&amp;referringTitle=Home"&gt;Clone&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Configure&amp;referringTitle=Home"&gt;Configure&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Checkin&amp;referringTitle=Home"&gt;Checkin&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Fetch&amp;referringTitle=Home"&gt;Fetch&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Pull&amp;referringTitle=Home"&gt;Pull&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Shelve&amp;referringTitle=Home"&gt;Shelve&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Shelvesets&amp;referringTitle=Home"&gt;Shelvesets&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Unshelve&amp;referringTitle=Home"&gt;Unshelve&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;h1&gt;Contributing&lt;/h1&gt;
Interested in contributing? &lt;a href="/wikipage?title=Contributing&amp;referringTitle=Home"&gt;
Learn about how you can contribute&lt;/a&gt;.&lt;br&gt;
&lt;h1&gt;Additional resources&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="/wikipage?title=Working%20with%20Teams&amp;referringTitle=Home"&gt;Working with Teams&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=How%20to%20build%20the%20project&amp;referringTitle=Home"&gt;How to build the project&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Recommended%20Git%20Settings"&gt;Recommended Git Settings&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;h1&gt;Articles about Git-TF&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/visualstudioalm/archive/2012/10/19/building-ios-apps-in-tfs.aspx"&gt;Building iOS Apps in TFS using Git-TF&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/ethomson/archive/2012/08/28/team-foundation-server-and-xcode-projects-with-git-tf.aspx"&gt;Team Foundation Server and Xcode projects with Git-TF&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>martin</author><pubDate>Tue, 08 Jan 2013 16:20:36 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20130108042036P</guid></item><item><title>Updated Wiki: Home</title><link>https://gittf.codeplex.com/wikipage?version=15</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br&gt;
Git-TF is a set of cross-platform, command line tools that facilitate sharing of changes between TFS and Git.&lt;br&gt;
&lt;br&gt;
These tools make it easy to clone sources from TFS, fetch updates from TFS, and update TFS with changes committed locally in Git.&lt;br&gt;
&lt;h1&gt;Downloads&lt;/h1&gt;
&lt;h2&gt;Latest Release&lt;/h2&gt;
Get the latest binary release from the &lt;a href="http://www.microsoft.com/en-us/download/details.aspx?id=30474"&gt;
Microsoft download page&lt;/a&gt;.&amp;nbsp; If you want the very latest bits then you could also
&lt;a href="/wikipage?title=how%20to%20build%20the%20project"&gt;build from the source&lt;/a&gt;.&lt;br&gt;
&lt;h2&gt;Current Build: Git-TF 2.0.1&lt;/h2&gt;
&lt;p&gt;Git-TF 2.0.1 has been released to fix a couple of very important issues around connecting to your hosted instance at visualstudio.com and in using Git-TF with the latest version of Java 7 from Oracle on Mac OS X.&amp;nbsp; In the 2.0 release, the highlights
 also include:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Full support for shelvesets (Shelve, Unshelve, and listing Shelvesets) &lt;/li&gt;&lt;li&gt;Support for file and folder renames when shelving and checking in to TFS &lt;/li&gt;&lt;li&gt;Support for gated builds &lt;/li&gt;&lt;li&gt;Created a &lt;a href="http://chocolatey.org/packages/Git-TF/2.0.0.20121030"&gt;Chocolately package&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;Numerous bug fixes including some performance improvements&lt;/li&gt;&lt;/ul&gt;
&lt;h1&gt;Installing Git-TF&lt;/h1&gt;
&lt;p&gt;The easiest way if you are a user of Chocolatey is to type “cinst gittf” at a command prompt on a machine where Chocolatey is installed.&amp;nbsp; But to set up Git-TF manually then do the following steps once you have installed Java:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Extract the contents of git-tf-2.0.1.20130107.zip to a folder on your local machine, i.e. C:\git-tf on Windows, or /user/git-tf on Mac/Linux.
&lt;/li&gt;&lt;li&gt;Add the path where you extracted Git-TF (i.e. C:\git-tf) to your PATH environment variable.
&lt;/li&gt;&lt;li&gt;Add the path where java.exe is installed (i.e. C:\Program Files (x86)\Java\jre7\bin) to your PATH environment variable.&lt;/li&gt;&lt;/ol&gt;
&lt;h1&gt;Example Usage&lt;/h1&gt;
&lt;h2&gt;Individual developer with a New Repo&lt;/h2&gt;
A typical workflow for an individual developer using the Git-TF tools are as follows.&lt;br&gt;
&lt;br&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span class="codeInline"&gt;git tf clone http://myserver:8080/tfs $/TeamProjectA/Main&lt;/span&gt;
&lt;/li&gt;&lt;li&gt;&lt;i&gt;Make changes to the file in the Git repo&lt;/i&gt; &lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git commit -a -m &amp;quot;commit one&amp;quot; (commit changes locally)
&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;i&gt;Make more changes&lt;/i&gt; &lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git commit -a -m &amp;quot;commit two&amp;quot; &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf pull --rebase &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf checkin &lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;
&lt;h2&gt;Development Team with an Existing Repo&lt;/h2&gt;
For a team working with an existing Git repo, a developer sharing changes to TFS using Git-TF would use the following workflow. For details, see Working with Teams.&lt;br&gt;
&lt;br&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span class="codeInline"&gt;git tf configure http://myserver:8080/tfs $/TeamProjectA/Main
&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf pull &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git commit -a -m &amp;quot;merge commit&amp;quot; &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf checkin &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git push &lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;
&lt;h1&gt;Commands&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="/gittf/wikipage?title=Help&amp;referringTitle=Home"&gt;Help&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Clone&amp;referringTitle=Home"&gt;Clone&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Configure&amp;referringTitle=Home"&gt;Configure&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Checkin&amp;referringTitle=Home"&gt;Checkin&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Fetch&amp;referringTitle=Home"&gt;Fetch&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Pull&amp;referringTitle=Home"&gt;Pull&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Shelve&amp;referringTitle=Home"&gt;Shelve&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Shelvesets&amp;referringTitle=Home"&gt;Shelvesets&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Unshelve&amp;referringTitle=Home"&gt;Unshelve&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;h1&gt;Contributing&lt;/h1&gt;
Interested in contributing? &lt;a href="/gittf/wikipage?title=Contributing&amp;referringTitle=Home"&gt;
Learn about how you can contribute&lt;/a&gt;.&lt;br&gt;
&lt;h1&gt;Additional resources&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="/gittf/wikipage?title=Working%20with%20Teams&amp;referringTitle=Home"&gt;Working with Teams&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=How%20to%20build%20the%20project&amp;referringTitle=Home"&gt;How to build the project&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Recommended%20Git%20Settings"&gt;Recommended Git Settings&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;h1&gt;Articles about Git-TF&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/visualstudioalm/archive/2012/10/19/building-ios-apps-in-tfs.aspx"&gt;Building iOS Apps in TFS using Git-TF&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/ethomson/archive/2012/08/28/team-foundation-server-and-xcode-projects-with-git-tf.aspx"&gt;Team Foundation Server and Xcode projects with Git-TF&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>martin</author><pubDate>Tue, 08 Jan 2013 16:14:50 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20130108041450P</guid></item><item><title>Updated Wiki: Home</title><link>https://gittf.codeplex.com/wikipage?version=14</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br&gt;
Git-TF is a set of cross-platform, command line tools that facilitate sharing of changes between TFS and Git.&lt;br&gt;
&lt;br&gt;
These tools make it easy to clone sources from TFS, fetch updates from TFS, and update TFS with changes committed locally in Git.&lt;br&gt;
&lt;h1&gt;Downloads&lt;/h1&gt;
&lt;h2&gt;Latest Release&lt;/h2&gt;
Get the latest binary release from the &lt;a href="http://aka.ms/git-tf"&gt;Microsoft download page&lt;/a&gt;.&amp;nbsp; If you want the very latest bits then you could also
&lt;a href="/wikipage?title=how%20to%20build%20the%20project"&gt;build from the source&lt;/a&gt;.&lt;br&gt;
&lt;h2&gt;Current Build: Git-TF 2.0.1&lt;/h2&gt;
&lt;p&gt;Git-TF 2.0.1 has been released to fix a couple of very important issues around connecting to your hosted instance at visualstudio.com and in using Git-TF with the latest version of Java 7 from Oracle on Mac OS X.&amp;nbsp; In the 2.0 release, the highlights
 also include:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Full support for shelvesets (Shelve, Unshelve, and listing Shelvesets) &lt;/li&gt;&lt;li&gt;Support for file and folder renames when shelving and checking in to TFS &lt;/li&gt;&lt;li&gt;Support for gated builds &lt;/li&gt;&lt;li&gt;Created a &lt;a href="http://chocolatey.org/packages/Git-TF/2.0.0.20121030"&gt;Chocolately package&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;Numerous bug fixes including some performance improvements&lt;/li&gt;&lt;/ul&gt;
&lt;h1&gt;Installing Git-TF&lt;/h1&gt;
&lt;p&gt;The easiest way if you are a user of Chocolatey is to type “cinst gittf” at a command prompt on a machine where Chocolatey is installed.&amp;nbsp; But to set up Git-TF manually then do the following steps once you have installed Java:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Extract the contents of git-tf-2.0.1.20130107.zip to a folder on your local machine, i.e. C:\git-tf on Windows, or /user/git-tf on Mac/Linux.
&lt;/li&gt;&lt;li&gt;Add the path where you extracted Git-TF (i.e. C:\git-tf) to your PATH environment variable.
&lt;/li&gt;&lt;li&gt;Add the path where java.exe is installed (i.e. C:\Program Files (x86)\Java\jre7\bin) to your PATH environment variable.&lt;/li&gt;&lt;/ol&gt;
&lt;h1&gt;Example Usage&lt;/h1&gt;
&lt;h2&gt;Individual developer with a New Repo&lt;/h2&gt;
A typical workflow for an individual developer using the Git-TF tools are as follows.&lt;br&gt;
&lt;br&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span class="codeInline"&gt;git tf clone http://myserver:8080/tfs $/TeamProjectA/Main&lt;/span&gt;
&lt;/li&gt;&lt;li&gt;&lt;i&gt;Make changes to the file in the Git repo&lt;/i&gt; &lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git commit -a -m &amp;quot;commit one&amp;quot; (commit changes locally)
&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;i&gt;Make more changes&lt;/i&gt; &lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git commit -a -m &amp;quot;commit two&amp;quot; &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf pull --rebase &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf checkin &lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;
&lt;h2&gt;Development Team with an Existing Repo&lt;/h2&gt;
For a team working with an existing Git repo, a developer sharing changes to TFS using Git-TF would use the following workflow. For details, see Working with Teams.&lt;br&gt;
&lt;br&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span class="codeInline"&gt;git tf configure http://myserver:8080/tfs $/TeamProjectA/Main
&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf pull &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git commit -a -m &amp;quot;merge commit&amp;quot; &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf checkin &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git push &lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;
&lt;h1&gt;Commands&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="/gittf/wikipage?title=Help&amp;referringTitle=Home"&gt;Help&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Clone&amp;referringTitle=Home"&gt;Clone&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Configure&amp;referringTitle=Home"&gt;Configure&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Checkin&amp;referringTitle=Home"&gt;Checkin&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Fetch&amp;referringTitle=Home"&gt;Fetch&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Pull&amp;referringTitle=Home"&gt;Pull&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Shelve&amp;referringTitle=Home"&gt;Shelve&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Shelvesets&amp;referringTitle=Home"&gt;Shelvesets&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Unshelve&amp;referringTitle=Home"&gt;Unshelve&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;h1&gt;Contributing&lt;/h1&gt;
Interested in contributing? &lt;a href="/gittf/wikipage?title=Contributing&amp;referringTitle=Home"&gt;
Learn about how you can contribute&lt;/a&gt;.&lt;br&gt;
&lt;h1&gt;Additional resources&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="/gittf/wikipage?title=Working%20with%20Teams&amp;referringTitle=Home"&gt;Working with Teams&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=How%20to%20build%20the%20project&amp;referringTitle=Home"&gt;How to build the project&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="/wikipage?title=Recommended%20Git%20Settings"&gt;Recommended Git Settings&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;h1&gt;Articles about Git-TF&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/visualstudioalm/archive/2012/10/19/building-ios-apps-in-tfs.aspx"&gt;Building iOS Apps in TFS using Git-TF&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/ethomson/archive/2012/08/28/team-foundation-server-and-xcode-projects-with-git-tf.aspx"&gt;Team Foundation Server and Xcode projects with Git-TF&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>martin</author><pubDate>Tue, 08 Jan 2013 15:56:21 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20130108035621P</guid></item><item><title>Updated Wiki: Home</title><link>https://gittf.codeplex.com/wikipage?version=13</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br&gt;
Git-TF is a set of cross-platform, command line tools that facilitate sharing of changes between TFS and Git.&lt;br&gt;
&lt;br&gt;
These tools make it easy to clone sources from TFS, fetch updates from TFS, and update TFS with changes committed locally in Git.&lt;br&gt;
&lt;h1&gt;Downloads&lt;/h1&gt;
&lt;h2&gt;Latest Release&lt;/h2&gt;
Get the latest binary release from the &lt;a href="http://aka.ms/git-tf"&gt;Microsoft download page&lt;/a&gt;.&amp;nbsp; If you want the very latest bits then you could also
&lt;a href="/wikipage?title=how%20to%20build%20the%20project"&gt;build from the source&lt;/a&gt;.&lt;br&gt;
&lt;h2&gt;Current Build: Git-TF 2.0.1&lt;/h2&gt;
&lt;p&gt;Git-TF 2.0.1 has been released to fix a couple of very important issues around connecting to your hosted instance at visualstudio.com and in using Git-TF with the latest version of Java 7 from Oracle on Mac OS X.&amp;nbsp; In the 2.0 release, the highlights
 also include:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Full support for shelvesets (Shelve, Unshelve, and listing Shelvesets) &lt;/li&gt;&lt;li&gt;Support for file and folder renames when shelving and checking in to TFS &lt;/li&gt;&lt;li&gt;Support for gated builds &lt;/li&gt;&lt;li&gt;Created a &lt;a href="http://chocolatey.org/packages/Git-TF/2.0.0.20121030"&gt;Chocolately package&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;Numerous bug fixes including some performance improvements&lt;/li&gt;&lt;/ul&gt;
&lt;h1&gt;Installing Git-TF&lt;/h1&gt;
&lt;p&gt;The easiest way if you are a user of Chocolatey is to type “cinst gittf” at a command prompt on a machine where Chocolatey is installed.&amp;nbsp; But to set up Git-TF manually then do the following steps once you have installed Java:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Extract the contents of git-tf-2.0.1.20130107.zip to a folder on your local machine, i.e. C:\git-tf on Windows, or /user/git-tf on Mac/Linux.
&lt;/li&gt;&lt;li&gt;Add the path where you extracted Git-TF (i.e. C:\git-tf) to your PATH environment variable.
&lt;/li&gt;&lt;li&gt;Add the path where java.exe is installed (i.e. C:\Program Files (x86)\Java\jre7\bin) to your PATH environment variable.&lt;/li&gt;&lt;/ol&gt;
&lt;h1&gt;Example Usage&lt;/h1&gt;
&lt;h2&gt;Individual developer with a New Repo&lt;/h2&gt;
A typical workflow for an individual developer using the Git-TF tools are as follows.&lt;br&gt;
&lt;br&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span class="codeInline"&gt;git tf clone http://myserver:8080/tfs $/TeamProjectA/Main&lt;/span&gt;
&lt;/li&gt;&lt;li&gt;&lt;i&gt;Make changes to the file in the Git repo&lt;/i&gt; &lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git commit -a -m &amp;quot;commit one&amp;quot; (commit changes locally)
&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;i&gt;Make more changes&lt;/i&gt; &lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git commit -a -m &amp;quot;commit two&amp;quot; &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf pull --rebase &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf checkin &lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;
&lt;h2&gt;Development Team with an Existing Repo&lt;/h2&gt;
For a team working with an existing Git repo, a developer sharing changes to TFS using Git-TF would use the following workflow. For details, see Working with Teams.&lt;br&gt;
&lt;br&gt;
&lt;ol&gt;
&lt;li&gt;&lt;span class="codeInline"&gt;git tf configure http://myserver:8080/tfs $/TeamProjectA/Main
&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf pull &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git commit -a -m &amp;quot;merge commit&amp;quot; &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git tf checkin &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span class="codeInline"&gt;git push &lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;
&lt;h1&gt;Commands&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="/gittf/wikipage?title=Help&amp;referringTitle=Home"&gt;Help&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Clone&amp;referringTitle=Home"&gt;Clone&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Configure&amp;referringTitle=Home"&gt;Configure&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Checkin&amp;referringTitle=Home"&gt;Checkin&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Fetch&amp;referringTitle=Home"&gt;Fetch&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Pull&amp;referringTitle=Home"&gt;Pull&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Shelve&amp;referringTitle=Home"&gt;Shelve&lt;/a&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Shelvesets&amp;referringTitle=Home"&gt;Shelvesets&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=Unshelve&amp;referringTitle=Home"&gt;Unshelve&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;h1&gt;Contributing&lt;/h1&gt;
Interested in contributing? &lt;a href="/gittf/wikipage?title=Contributing&amp;referringTitle=Home"&gt;
Learn about how you can contribute&lt;/a&gt;.&lt;br&gt;
&lt;h1&gt;Additional resources&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="/gittf/wikipage?title=Working%20with%20Teams&amp;referringTitle=Home"&gt;Working with Teams&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="/gittf/wikipage?title=How%20to%20build%20the%20project&amp;referringTitle=Home"&gt;How to build the project&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;Recommended Git Settings&lt;/li&gt;&lt;/ul&gt;
&lt;h1&gt;Articles about Git-TF&lt;/h1&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/visualstudioalm/archive/2012/10/19/building-ios-apps-in-tfs.aspx"&gt;Building iOS Apps in TFS using Git-TF&lt;/a&gt;
&lt;/li&gt;&lt;li&gt;&lt;a href="http://blogs.msdn.com/b/ethomson/archive/2012/08/28/team-foundation-server-and-xcode-projects-with-git-tf.aspx"&gt;Team Foundation Server and Xcode projects with Git-TF&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>martin</author><pubDate>Tue, 08 Jan 2013 15:50:07 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20130108035007P</guid></item><item><title>Updated Wiki: Documentation</title><link>http://gittf.codeplex.com/documentation?version=1</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Getting Started&lt;/h1&gt;See &lt;a href="http://gittf.codeplex.com/wikipage?referringTitle=Documentation"&gt;Home&lt;/a&gt;&lt;br /&gt;
&lt;h1&gt;Installing Git-TF&lt;/h1&gt;See &lt;a href="http://gittf.codeplex.com/wikipage?referringTitle=Documentation"&gt;Home&lt;/a&gt;&lt;br /&gt;
&lt;h1&gt;Example Usage&lt;/h1&gt;See &lt;a href="http://gittf.codeplex.com/wikipage?referringTitle=Documentation"&gt;Home&lt;/a&gt;&lt;br /&gt;
&lt;h1&gt;Recommended Git Settings&lt;/h1&gt;See &lt;a href="http://gittf.codeplex.com/wikipage?title=Recommended%20Git%20Settings&amp;referringTitle=Documentation"&gt;Recommended Git Settings&lt;/a&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>martin</author><pubDate>Tue, 08 Jan 2013 12:57:38 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Documentation 20130108125738P</guid></item><item><title>Updated Wiki: Recommended Git Settings</title><link>https://gittf.codeplex.com/wikipage?title=Recommended Git Settings&amp;version=1</link><description>&lt;div class="wikidoc"&gt;
&lt;p&gt;When using the Git-TF tools, there are a few recommended settings that should make it easier to work with other developers that are using TFS.
&lt;/p&gt;
&lt;h2&gt;Line Endings&lt;/h2&gt;
&lt;pre&gt;core.autocrlf = false&lt;/pre&gt;
&lt;p&gt;Git has a feature to allow line endings to be normalized for a repository, and it provides options for how those line endings should be set when files are checked out. TFS does not have any feature to normalize line endings - it stores exactly what is checked
 in by the user. When using Git-TF, choosing to normalize line endings to Unix-style line endings (LF) will likely result in TFS users (especially those using VS) changing the line endings back to Windows-style line endings (CRLF). As a result, it is recommended
 to set the &lt;font face="Courier New"&gt;core.autocrlf&lt;/font&gt; option to false, which will keep line endings unchanged in the Git repo.
&lt;/p&gt;
&lt;h2&gt;Ignore case&lt;/h2&gt;
&lt;pre&gt;core.ignorecase = true&lt;/pre&gt;
&lt;p&gt;TFS does not allow multiple files that differ only in case to exist in the same folder at the same time. Git users working on non-Windows machines could commit files to their repo that differ only in case, and attempting to check in those changes to TFS
 will result in an error. To avoid these types of errors, the &lt;font face="Courier New"&gt;
core.ignorecase&lt;/font&gt; option should be set to true. &lt;/p&gt;
&lt;h2&gt;.gitignore&lt;/h2&gt;
&lt;p&gt;Having a .gitignore file for your project helps make sure that only the files you care about are versioned, and not the files that are just temporary or for your local machine only.&amp;nbsp; Take a look at the
&lt;a href="https://github.com/github/gitignore"&gt;gitignore project on GitHub&lt;/a&gt; for sample .gitignore files for various application types including
&lt;a href="https://github.com/github/gitignore/blob/master/CSharp.gitignore"&gt;C#&lt;/a&gt; and
&lt;a href="https://github.com/github/gitignore/blob/master/VB.Net.gitignore"&gt;VB.NET&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>martin</author><pubDate>Tue, 08 Jan 2013 12:49:32 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Recommended Git Settings 20130108124932P</guid></item><item><title>New Comment on "Configure"</title><link>http://gittf.codeplex.com/wikipage?title=Configure&amp;ANCHOR#C25676</link><description>yeah, I realised after posting this - reposted to http&amp;#58;&amp;#47;&amp;#47;gittf.codeplex.com&amp;#47;discussions&amp;#47;404265&amp;#10;&amp;#10;hopefully somebody there will be able to help&amp;#10;&amp;#10;thanks for pointing this out</description><author>riotgibbon</author><pubDate>Fri, 23 Nov 2012 11:20:17 GMT</pubDate><guid isPermaLink="false">New Comment on "Configure" 20121123112017A</guid></item></channel></rss>