<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git-checkout-history, branch master</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 pull request #1 from robertmassaioli/patch-1</title>
<updated>2019-06-25T08:30:47+00:00</updated>
<author>
<name>teddywing</name>
</author>
<published>2019-06-25T08:30:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/git-checkout-history/commit/?id=5726547d73e6316ee2bcbcd5d3ba975f41df9a03'/>
<id>5726547d73e6316ee2bcbcd5d3ba975f41df9a03</id>
<content type='text'>
Fix readme for go get git-checkout-history</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix readme for go get git-checkout-history</pre>
</div>
</content>
</entry>
<entry>
<title>Fix readme for go get git-checkout-history</title>
<updated>2019-06-25T04:10:11+00:00</updated>
<author>
<name>Robert Massaioli</name>
</author>
<published>2019-06-25T04:10:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/git-checkout-history/commit/?id=37c972e3d4014e1406ed7d015b38502fce972fe1'/>
<id>37c972e3d4014e1406ed7d015b38502fce972fe1</id>
<content type='text'>
This is what I needed to do in order to checkout this repository locally.

I also used nix-shell, so I set my GOPATH to ~/go from inside the nix-shell environment.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is what I needed to do in order to checkout this repository locally.

I also used nix-shell, so I set my GOPATH to ~/go from inside the nix-shell environment.</pre>
</div>
</content>
</entry>
<entry>
<title>README: Remove known issue about list separation by repo</title>
<updated>2015-01-12T00:50:51+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2015-01-12T00:50:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/git-checkout-history/commit/?id=00a40c307cd82dfda2cbd679252699fd505fc516'/>
<id>00a40c307cd82dfda2cbd679252699fd505fc516</id>
<content type='text'>
This functionality has been implemented as of v0.2.0. It is no longer
an issue.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This functionality has been implemented as of v0.2.0. It is no longer
an issue.
</pre>
</div>
</content>
</entry>
<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>
</feed>
