<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Git For Windows Developers – Git Series – Part 2</title>
	<atom:link href="http://lostechies.com/jasonmeridth/2009/06/04/git-for-windows-developers-git-series-part-2/feed/" rel="self" type="application/rss+xml" />
	<link>http://lostechies.com/jasonmeridth/2009/06/04/git-for-windows-developers-git-series-part-2/</link>
	<description>Just another LosTechies site</description>
	<lastBuildDate>Thu, 29 Mar 2012 20:33:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
	<item>
		<title>By: Terry Aney</title>
		<link>http://lostechies.com/jasonmeridth/2009/06/04/git-for-windows-developers-git-series-part-2/#comment-494</link>
		<dc:creator>Terry Aney</dc:creator>
		<pubDate>Wed, 27 Apr 2011 01:54:00 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jason_meridth/archive/2009/06/04/git-for-windows-developers-git-series-part-2.aspx#comment-494</guid>
		<description>Found a good noob tutorial here http://www.silverwareconsulting.com/index.cfm/2010/6/6/Using-Git-Rebase-to-Squash-Commits</description>
		<content:encoded><![CDATA[<p>Found a good noob tutorial here <a href="http://www.silverwareconsulting.com/index.cfm/2010/6/6/Using-Git-Rebase-to-Squash-Commits" rel="nofollow">http://www.silverwareconsulting.com/index.cfm/2010/6/6/Using-Git-Rebase-to-Squash-Commits</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Terry Aney</title>
		<link>http://lostechies.com/jasonmeridth/2009/06/04/git-for-windows-developers-git-series-part-2/#comment-493</link>
		<dc:creator>Terry Aney</dc:creator>
		<pubDate>Tue, 26 Apr 2011 15:21:00 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jason_meridth/archive/2009/06/04/git-for-windows-developers-git-series-part-2.aspx#comment-493</guid>
		<description>For a git noob, mind expanding that a &#039;bit&#039;.  Just trying to get a policy in place of generally &#039;cleaning up local repo&#039; before pushing.

In my example I did...
git checkout -b SquashTest
edit...
git commit -a -m &quot;Squash Commit 1&quot;
edit..
git commit -a -m &quot;Squash Commit 2&quot;

...now what?  I want to make these two commits one &#039;Squash Feature&#039; commit.

I tried git rebase -i, but it wants more options supplied...still getting over initial learning curve and if something on git-rebase man page was supposed to click, it didn&#039;t.

Thanks in advance.</description>
		<content:encoded><![CDATA[<p>For a git noob, mind expanding that a &#8216;bit&#8217;.  Just trying to get a policy in place of generally &#8216;cleaning up local repo&#8217; before pushing.</p>
<p>In my example I did&#8230;<br />
git checkout -b SquashTest<br />
edit&#8230;<br />
git commit -a -m &#8220;Squash Commit 1&#8243;<br />
edit..<br />
git commit -a -m &#8220;Squash Commit 2&#8243;</p>
<p>&#8230;now what?  I want to make these two commits one &#8216;Squash Feature&#8217; commit.</p>
<p>I tried git rebase -i, but it wants more options supplied&#8230;still getting over initial learning curve and if something on git-rebase man page was supposed to click, it didn&#8217;t.</p>
<p>Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason Meridth</title>
		<link>http://lostechies.com/jasonmeridth/2009/06/04/git-for-windows-developers-git-series-part-2/#comment-492</link>
		<dc:creator>Jason Meridth</dc:creator>
		<pubDate>Mon, 25 Apr 2011 22:21:00 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jason_meridth/archive/2009/06/04/git-for-windows-developers-git-series-part-2.aspx#comment-492</guid>
		<description>Terry: I use &quot;git rebase -i&quot; to squash my commits from my local feature branch to my local master branch, and then push.

a) I need to :)
b) it isn&#039;t &quot;invalid&quot;, it is just the one I was using at the time. :)  I do squash

Thank you, glad this series helped.</description>
		<content:encoded><![CDATA[<p>Terry: I use &#8220;git rebase -i&#8221; to squash my commits from my local feature branch to my local master branch, and then push.</p>
<p>a) I need to :)<br />
b) it isn&#8217;t &#8220;invalid&#8221;, it is just the one I was using at the time. :)  I do squash</p>
<p>Thank you, glad this series helped.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Terry Aney</title>
		<link>http://lostechies.com/jasonmeridth/2009/06/04/git-for-windows-developers-git-series-part-2/#comment-491</link>
		<dc:creator>Terry Aney</dc:creator>
		<pubDate>Mon, 25 Apr 2011 21:15:00 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jason_meridth/archive/2009/06/04/git-for-windows-developers-git-series-part-2.aspx#comment-491</guid>
		<description>&quot;UPDATE: I no longer use the “git pull –squash…” workflow.  I have a Part 4 post pending.  Please read the first part of this post for Github.com knowledge, but just skim the remainder.  Thanks.&quot;

a) Is Part 4 still pending?
b) Does this mean that your workflow just a bit below this update statement is invalid?  I&#039;m thinking I want to make a pattern for our environment that you always squash your commits on your local repo before they are put into our &#039;master repo&#039; so this seemed to be what I was interested in.

Great 3 part series...I&#039;m late to the game but enjoyed them nonetheless.</description>
		<content:encoded><![CDATA[<p>&#8220;UPDATE: I no longer use the “git pull –squash…” workflow.  I have a Part 4 post pending.  Please read the first part of this post for Github.com knowledge, but just skim the remainder.  Thanks.&#8221;</p>
<p>a) Is Part 4 still pending?<br />
b) Does this mean that your workflow just a bit below this update statement is invalid?  I&#8217;m thinking I want to make a pattern for our environment that you always squash your commits on your local repo before they are put into our &#8216;master repo&#8217; so this seemed to be what I was interested in.</p>
<p>Great 3 part series&#8230;I&#8217;m late to the game but enjoyed them nonetheless.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason Meridth</title>
		<link>http://lostechies.com/jasonmeridth/2009/06/04/git-for-windows-developers-git-series-part-2/#comment-443</link>
		<dc:creator>Jason Meridth</dc:creator>
		<pubDate>Mon, 24 Aug 2009 20:48:48 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jason_meridth/archive/2009/06/04/git-for-windows-developers-git-series-part-2.aspx#comment-443</guid>
		<description>@Sam

Glad they helped</description>
		<content:encoded><![CDATA[<p>@Sam</p>
<p>Glad they helped</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sam Bloomquist</title>
		<link>http://lostechies.com/jasonmeridth/2009/06/04/git-for-windows-developers-git-series-part-2/#comment-442</link>
		<dc:creator>Sam Bloomquist</dc:creator>
		<pubDate>Mon, 24 Aug 2009 20:34:10 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jason_meridth/archive/2009/06/04/git-for-windows-developers-git-series-part-2.aspx#comment-442</guid>
		<description>Thanks for a great set of tutorials.  Git has been the back of my mind as something I need to learn for a while, and these few blog posts got me up to speed with the basics in a very short amount of time.  Great work.</description>
		<content:encoded><![CDATA[<p>Thanks for a great set of tutorials.  Git has been the back of my mind as something I need to learn for a while, and these few blog posts got me up to speed with the basics in a very short amount of time.  Great work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam D.</title>
		<link>http://lostechies.com/jasonmeridth/2009/06/04/git-for-windows-developers-git-series-part-2/#comment-441</link>
		<dc:creator>Adam D.</dc:creator>
		<pubDate>Sat, 15 Aug 2009 00:19:48 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jason_meridth/archive/2009/06/04/git-for-windows-developers-git-series-part-2.aspx#comment-441</guid>
		<description>git push

and 

git pull

will work with no params if you set it up correctly:

git config remote.origin.url=&lt;remote repo url&gt;
git config remote.origin.fetch +refs/heads/*:refs/remotes/origin/*
git config branch.master.remote origin
git config branch.master.merge refs/heads/master

set up automatic tracking for any new branches you want to put up on the remote repo:
git config --global push.default tracking
</description>
		<content:encoded><![CDATA[<p>git push</p>
<p>and </p>
<p>git pull</p>
<p>will work with no params if you set it up correctly:</p>
<p>git config remote.origin.url=<remote repo url><br />
git config remote.origin.fetch +refs/heads/*:refs/remotes/origin/*<br />
git config branch.master.remote origin<br />
git config branch.master.merge refs/heads/master</p>
<p>set up automatic tracking for any new branches you want to put up on the remote repo:<br />
git config &#8211;global push.default tracking<br />
</remote></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason Meridth</title>
		<link>http://lostechies.com/jasonmeridth/2009/06/04/git-for-windows-developers-git-series-part-2/#comment-440</link>
		<dc:creator>Jason Meridth</dc:creator>
		<pubDate>Thu, 09 Jul 2009 14:23:15 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jason_meridth/archive/2009/06/04/git-for-windows-developers-git-series-part-2.aspx#comment-440</guid>
		<description>@Stefan

That is awesome.  Thank you for clarifying the GIT/SSH protocol relationships.  I&#039;m updating the post to reference your comment.  Thanks for catching the typo also.</description>
		<content:encoded><![CDATA[<p>@Stefan</p>
<p>That is awesome.  Thank you for clarifying the GIT/SSH protocol relationships.  I&#8217;m updating the post to reference your comment.  Thanks for catching the typo also.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stefan N&#228;we</title>
		<link>http://lostechies.com/jasonmeridth/2009/06/04/git-for-windows-developers-git-series-part-2/#comment-439</link>
		<dc:creator>Stefan N&#228;we</dc:creator>
		<pubDate>Thu, 09 Jul 2009 09:56:08 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jason_meridth/archive/2009/06/04/git-for-windows-developers-git-series-part-2.aspx#comment-439</guid>
		<description>In section &quot;git remotes&quot; the side note says:
  
&quot;git@github.com/armmer/console_app.git doesn’t look like a HTTP URL or a ssh:// protocol.  What protocol is that?  Um….it’s the git protocol.  :)  It’s optimized  for this purpose.  Information here.  The note to take away is that it uses port 9418 by default, so if you have a paranoid firewall admin….no luck.&quot;

That&#039;s not 100% correct.

(BTW. There&#039;s a typo in the URL. It should read &#039;git@github.com:armmer/console_app.git&#039; )

The URL &quot;git@github.com...&quot; does a connection using the SSH protocol and tunnels its own GIT protocol through it (i.e. it uses port 22 by default).
Using the &#039;raw&#039; GIT protocol (for cloning,pulling, fetching only) requires a URL like this: 

   git://hostname/path/to/repo,git

(More on the GIT URLs to be found in &#039;git help fetch&#039;)

Good article(s) anyway.

Regards,
Stefan</description>
		<content:encoded><![CDATA[<p>In section &#8220;git remotes&#8221; the side note says:</p>
<p>&#8220;git@github.com/armmer/console_app.git doesn’t look like a HTTP URL or a ssh:// protocol.  What protocol is that?  Um….it’s the git protocol.  :)  It’s optimized  for this purpose.  Information here.  The note to take away is that it uses port 9418 by default, so if you have a paranoid firewall admin….no luck.&#8221;</p>
<p>That&#8217;s not 100% correct.</p>
<p>(BTW. There&#8217;s a typo in the URL. It should read &#8216;git@github.com:armmer/console_app.git&#8217; )</p>
<p>The URL &#8220;git@github.com&#8230;&#8221; does a connection using the SSH protocol and tunnels its own GIT protocol through it (i.e. it uses port 22 by default).<br />
Using the &#8216;raw&#8217; GIT protocol (for cloning,pulling, fetching only) requires a URL like this: </p>
<p>   git://hostname/path/to/repo,git</p>
<p>(More on the GIT URLs to be found in &#8216;git help fetch&#8217;)</p>
<p>Good article(s) anyway.</p>
<p>Regards,<br />
Stefan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason Meridth</title>
		<link>http://lostechies.com/jasonmeridth/2009/06/04/git-for-windows-developers-git-series-part-2/#comment-438</link>
		<dc:creator>Jason Meridth</dc:creator>
		<pubDate>Wed, 08 Jul 2009 18:09:00 +0000</pubDate>
		<guid isPermaLink="false">/blogs/jason_meridth/archive/2009/06/04/git-for-windows-developers-git-series-part-2.aspx#comment-438</guid>
		<description>@Donn
np, glad it helped

@Dan
Thank you for the info.  Those pesky Firewall admins...:)</description>
		<content:encoded><![CDATA[<p>@Donn<br />
np, glad it helped</p>
<p>@Dan<br />
Thank you for the info.  Those pesky Firewall admins&#8230;:)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
