<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Rachel Ober &#187; git</title>
	<atom:link href="http://rachelober.com/tags/git/feed/" rel="self" type="application/rss+xml" />
	<link>http://rachelober.com</link>
	<description>Life &#38; Times of a Female Software Engineer</description>
	<lastBuildDate>Sat, 14 Jan 2012 23:11:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Git Handyism: Reflog</title>
		<link>http://rachelober.com/2010/04/15/git-handyism/</link>
		<comments>http://rachelober.com/2010/04/15/git-handyism/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 19:01:25 +0000</pubDate>
		<dc:creator>Rachel</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[handyism]]></category>
		<category><![CDATA[reflog]]></category>
		<category><![CDATA[source control]]></category>

		<guid isPermaLink="false">http://rachelober.com/?p=331</guid>
		<description><![CDATA[This just saved my butt.
Say you want to delete a branch:
% git branch -D s-588-test-list-of-urls
BUT THEN YOUR REALIZE YOU DELETED THE WRONG ONE. And you had commits that were local and were not pushed to the main repository, this piece of information is very helpful.
Do a:
% git reflog
And you&#8217;ll  [...]]]></description>
			<content:encoded><![CDATA[<p>This just saved my butt.</p>
<p>Say you want to delete a branch:</p>
<pre class="brush:shell">% git branch -D s-588-test-list-of-urls</pre>
<p>BUT THEN YOUR REALIZE YOU DELETED THE WRONG ONE. And you had commits that were local and were not pushed to the main repository, this piece of information is very helpful.</p>
<p>Do a:</p>
<pre class="brush:shell">% git reflog</pre>
<p>And you&#8217;ll get something like:</p>
<pre class="brush:shell">fbfdcea HEAD@{0}: checkout: moving from master to s-588-test-list-of-urls
fbfdcea HEAD@{1}: checkout: moving from b-702-slideshow-play-button-jquery to ma
c87935e HEAD@{2}: checkout: moving from s-588-test-list-of-urls to b-702-slidesh
eaeb971 HEAD@{3}: commit: Writing some looping code to pull urls from sitemap.xm
fe2d942 HEAD@{4}: commit: adding backgroundrb
fbfdcea HEAD@{5}: checkout: moving from master to s-588-test-list-of-urls
fbfdcea HEAD@{6}: checkout: moving from b-702-slideshow-play-button-jquery to ma
c87935e HEAD@{7}: commit: Change how the text buttons are colored
1d233b8 HEAD@{8}: checkout: moving from master to b-702-slideshow-play-button-jq
fbfdcea HEAD@{9}: checkout: moving from b-702-slideshow-play-button-jquery to ma
1d233b8 HEAD@{10}: commit: Slideshows work again with jQuery
f101f15 HEAD@{11}: checkout: moving from 0.8.0 to b-702-slideshow-play-button-jq
87a1769 HEAD@{12}: checkout: moving from b-702-slideshow-play-button-jquery to 0
f101f15 HEAD@{13}: commit: Playing with javascripts and styles
</pre>
<p>Pick out which revision you last remember you did on your branch and then do this (with a new branch):</p>
<pre class="brush:shell">% git checkout -b s-588-test-list-of-urls-redo HEAD@{3}</pre>
<p>And then checkout the correct repository again:</p>
<pre class="brush:shell">% git checkout s-588-test-list-of-urls</pre>
<p>And do a merge!</p>
<pre class="brush:shell">% git merge s-588-test-list-of-urls-redo</pre>
<p>And breathe a sigh of relief because you saved yourself a panic attack.</p>
]]></content:encoded>
			<wfw:commentRss>http://rachelober.com/2010/04/15/git-handyism/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making the Blogenning Easier (Maybe?)</title>
		<link>http://rachelober.com/2009/08/14/making-the-blogenning-easier-maybe/</link>
		<comments>http://rachelober.com/2009/08/14/making-the-blogenning-easier-maybe/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 20:10:47 +0000</pubDate>
		<dc:creator>Rachel</dc:creator>
				<category><![CDATA[Ruby & Rails]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[blogenning]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[ruby on rails]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://rachelober.com/?p=189</guid>
		<description><![CDATA[I&#8217;ve been promising this for a while but with regular life and headaches taking over my free time&#8230; I have been less than productive. But fear not! I DO have an update. I think I basically have the first version of the &#8220;Blogenning&#8221; software I&#8217;ve been talking so much about right now.
For the time  [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been promising this for a while but with regular life and headaches taking over my free time&#8230; I have been less than productive. But fear not! I DO have an update. I think I basically have the first version of the &#8220;Blogenning&#8221; software I&#8217;ve been talking so much about right now.</p>
<p>For the time being it will be hosted at <a href="http://blogenning.rachelober.com/">http://blogenning.rachelober.com/</a>. Not to be self-serving, but it is easiest for me to update it. I spoke with Brandon and we both thought that if it worked well enough we could each chip in a buck and buy ourselves a proper domain to house the insanity.</p>
<p>Features:</p>
<ul>
<li>User login and administration</li>
<li>Add &#8220;rounds&#8221;, &#8220;entries&#8221; for rounds, and &#8220;users&#8221; for entries</li>
<li>Main page lists the rounds starting from most recent to oldest entries</li>
</ul>
<p>On the to do list:</p>
<ul>
<li>Registering and password retrieval</li>
<li>&#8220;Special&#8221; statuses for &#8220;trend setters&#8221; and &#8220;bastards&#8221; (these are inside-jokes for people NOT in the Blogenning)</li>
<li>API stuff so that a plugin for WordPress and Drupal can add rounds and entries</li>
<li>User account stuff so you guys can change your password</li>
</ul>
<p>Also, if you know ruby on rails or want to get in on designing the beast (I refuse to do any complicated CSS for this at this point *looks at Jaco and hopes his artistic sense may help with this one*)&#8230; you can join our <a href="http://github.com/rachelober/Blogenning/">GitHub site</a> and ask to be put on the development team so you can have some input. Yay!</p>
<p>For the time being only my entries are entered into the database so you&#8217;re going to have to add your own damn entries because I&#8217;m much too lazy to do everyone&#8217;s. <img src='http://rachelober.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  Once I get password retrieval working on the site, I have all of your user accounts made, so then you can just do a password retrieval and your password will be emailed to you.</p>
]]></content:encoded>
			<wfw:commentRss>http://rachelober.com/2009/08/14/making-the-blogenning-easier-maybe/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
