<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git-checkout-history, branch v0.2.0</title>
<subtitle>Stores history of git branches recently checked out and provides a way to quickly return to those branches</subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/git-checkout-history/'/>
<entry>
<title>Merge branch 'separate-branch-history-by-repository'</title>
<updated>2015-01-12T00:09:14+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2015-01-12T00:09:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/git-checkout-history/commit/?id=ceb22064e29582a85e3b4df6e87eb1397e8337b7'/>
<id>ceb22064e29582a85e3b4df6e87eb1397e8337b7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'checkout-history-without-storage-file-bug'</title>
<updated>2015-01-12T00:03:56+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2015-01-12T00:03:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/git-checkout-history/commit/?id=c93b9f1f135da82f7d126d4e940c716c7cc6c870'/>
<id>c93b9f1f135da82f7d126d4e940c716c7cc6c870</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>utils.go: Change error message when no history file</title>
<updated>2015-01-12T00:01:52+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2015-01-12T00:01:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/git-checkout-history/commit/?id=15bf95e6862ebb9bab17ee09b8e2886c746c9a70'/>
<id>15bf95e6862ebb9bab17ee09b8e2886c746c9a70</id>
<content type='text'>
When getting a list of branches but the file doesn't exist, print a
custom error message that informs users that it's necessary to run
`git-checkout-store` before `git-checkout-history` will be able to do
anything.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When getting a list of branches but the file doesn't exist, print a
custom error message that informs users that it's necessary to run
`git-checkout-store` before `git-checkout-history` will be able to do
anything.
</pre>
</div>
</content>
</entry>
<entry>
<title>utils.go: Separate history by repository</title>
<updated>2015-01-11T23:15:31+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2015-01-11T23:15:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/git-checkout-history/commit/?id=b89de92a5bb69e40f80e51ab4d4847c78598e48e'/>
<id>b89de92a5bb69e40f80e51ab4d4847c78598e48e</id>
<content type='text'>
Use a different history list for each repo.

Now the YAML file is organised in this way:

    /path/to/repo:
      - branch name
      - branch name
    /path/to/another/repo:
      - branch name
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use a different history list for each repo.

Now the YAML file is organised in this way:

    /path/to/repo:
      - branch name
      - branch name
    /path/to/another/repo:
      - branch name
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'bash-completion'</title>
<updated>2015-01-06T22:13:23+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2015-01-06T22:13:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/git-checkout-history/commit/?id=ea3a584741f18764d622cf4bd4e8940b4c2f346f'/>
<id>ea3a584741f18764d622cf4bd4e8940b4c2f346f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>README: Add information about shell completion</title>
<updated>2015-01-06T22:10:26+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2015-01-06T22:10:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/git-checkout-history/commit/?id=cf5979a4933e2adcec1fac256f45cff66da16ece'/>
<id>cf5979a4933e2adcec1fac256f45cff66da16ece</id>
<content type='text'>
A note and installation instructions for shell completion of
`git-checkout-store`.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
A note and installation instructions for shell completion of
`git-checkout-store`.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add patch for git-completion.bash</title>
<updated>2015-01-06T21:55:33+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2015-01-06T21:55:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/git-checkout-history/commit/?id=6e1bbd5123539999bb43135a0a1e9a2722fba2c5'/>
<id>6e1bbd5123539999bb43135a0a1e9a2722fba2c5</id>
<content type='text'>
Add a patch file that can be used on git's git-completion.bash file.
This gives `git-checkout-store` the same shell completion provided to
`git checkout`.

For those accustomed to git shell completion, this should make
`git-checkout-store` easier to use.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add a patch file that can be used on git's git-completion.bash file.
This gives `git-checkout-store` the same shell completion provided to
`git checkout`.

For those accustomed to git shell completion, this should make
`git-checkout-store` easier to use.
</pre>
</div>
</content>
</entry>
<entry>
<title>utils.go: Trim trailing newline on repo directory</title>
<updated>2015-01-03T03:01:39+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2015-01-03T03:01:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/git-checkout-history/commit/?id=faad1a93bf0cbadc06f245a46d1057ced4f3710c'/>
<id>faad1a93bf0cbadc06f245a46d1057ced4f3710c</id>
<content type='text'>
The repository directory location string had a trailing newline at the
end which I don't want because this is going to be the key of a hash, so
it doesn't make sense to have it.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The repository directory location string had a trailing newline at the
end which I don't want because this is going to be the key of a hash, so
it doesn't make sense to have it.
</pre>
</div>
</content>
</entry>
<entry>
<title>utils.go: Add function to get current git repo path</title>
<updated>2014-12-31T17:52:23+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2014-12-31T17:50:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/git-checkout-history/commit/?id=7d6ab76e8c5b382aff8a0cb7812c904f6dda9272'/>
<id>7d6ab76e8c5b382aff8a0cb7812c904f6dda9272</id>
<content type='text'>
Query git to get the current repo path. I plan on using that string as
the key for branches.

This will allow us to only store and query checkout history for the
current repository.

TODO: get rid of trailing newline
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Query git to get the current repo path. I plan on using that string as
the key for branches.

This will allow us to only store and query checkout history for the
current repository.

TODO: get rid of trailing newline
</pre>
</div>
</content>
</entry>
<entry>
<title>README: Add installation instructions</title>
<updated>2014-12-27T02:45:27+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2014-12-27T02:45:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/git-checkout-history/commit/?id=2be3f192975944b7798ba0d4794af12101c2bcd0'/>
<id>2be3f192975944b7798ba0d4794af12101c2bcd0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
