<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git-suggestion/src, branch v0.1.0</title>
<subtitle>Diffs and patches for GitHub pull request suggestions</subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/git-suggestion/'/>
<entry>
<title>Rename the project `git-suggestion`</title>
<updated>2020-08-05T22:18:19+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2020-08-05T20:21:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/git-suggestion/commit/?id=a9c9d1c3a20af5779145dbba8cdfbf0d1fbb960f'/>
<id>a9c9d1c3a20af5779145dbba8cdfbf0d1fbb960f</id>
<content type='text'>
Since this is a Git command, this makes more sense to me.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Since this is a Git command, this makes more sense to me.
</pre>
</div>
</content>
</entry>
<entry>
<title>OwnerRepo: Remove ".git" suffix from HTTPS URLs</title>
<updated>2020-08-04T23:14:19+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2020-08-04T23:14:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/git-suggestion/commit/?id=a3dcf7fa8c14b809174edd725ef5d46557803521'/>
<id>a3dcf7fa8c14b809174edd725ef5d46557803521</id>
<content type='text'>
I hadn't tested with HTTPS remote URLs, so assumed the code I copied
from `github_suggestion::url` would work. It worked for suggestion
comment URLs, but it doesn't work for remote URLs because the latter end
in ".git". Remove this suffix to fix the bug.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
I hadn't tested with HTTPS remote URLs, so assumed the code I copied
from `github_suggestion::url` would work. It worked for suggestion
comment URLs, but it doesn't work for remote URLs because the latter end
in ".git". Remove this suffix to fix the bug.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add license (GNU GPLv3+)</title>
<updated>2020-08-04T18:09:52+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2020-08-04T18:09:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/git-suggestion/commit/?id=fdf33cf50c2747976bc683ccd74b55d4c14053e0'/>
<id>fdf33cf50c2747976bc683ccd74b55d4c14053e0</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Config: Add a version argument</title>
<updated>2020-08-03T18:00:01+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2020-08-03T18:00:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/git-suggestion/commit/?id=2f983a7f1b973d72d0c0a43d5679161acf4c653c'/>
<id>2f983a7f1b973d72d0c0a43d5679161acf4c653c</id>
<content type='text'>
Allow getting the program version from the command line.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Allow getting the program version from the command line.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove `main.rs`</title>
<updated>2020-08-02T16:50:30+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2020-08-02T16:50:30+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/git-suggestion/commit/?id=24eb557525322eabf5d0934d3347e046e770a711'/>
<id>24eb557525322eabf5d0934d3347e046e770a711</id>
<content type='text'>
We have multiple binaries in `src/bin/`, so this file is no longer
needed.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We have multiple binaries in `src/bin/`, so this file is no longer
needed.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add documentation comments</title>
<updated>2020-08-02T16:49:51+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2020-08-02T16:49:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/git-suggestion/commit/?id=8e5ac6f2d4e52eea95e5a6fc2905ce511ac4956e'/>
<id>8e5ac6f2d4e52eea95e5a6fc2905ce511ac4956e</id>
<content type='text'>
Light documentation for our various functions and types.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Light documentation for our various functions and types.
</pre>
</div>
</content>
</entry>
<entry>
<title>Move suggestion arguments check to `Config::get`</title>
<updated>2020-08-02T08:43:54+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2020-08-02T08:43:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/git-suggestion/commit/?id=48e4130e825de244592d7cf0631d3b0552d42ef1'/>
<id>48e4130e825de244592d7cf0631d3b0552d42ef1</id>
<content type='text'>
Since this check for suggestion arguments is in both binaries, we can
move it to the common preflight function.

Clean up other areas now that we moved the function.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Since this check for suggestion arguments is in both binaries, we can
move it to the common preflight function.

Clean up other areas now that we moved the function.
</pre>
</div>
</content>
</entry>
<entry>
<title>git-sugapply: Copy over new logic from `git-sugpatch`</title>
<updated>2020-08-02T08:23:52+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2020-08-02T08:23:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/git-suggestion/commit/?id=20e98432afb02262703a2bd4524e6a87f3145086'/>
<id>20e98432afb02262703a2bd4524e6a87f3145086</id>
<content type='text'>
Use the new logic from `git-sugpatch` to build a `Config` and run
`apply()` on all suggestion input arguments.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use the new logic from `git-sugpatch` to build a `Config` and run
`apply()` on all suggestion input arguments.
</pre>
</div>
</content>
</entry>
<entry>
<title>Config: Add description to `--github-token` argument</title>
<updated>2020-08-02T08:09:58+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2020-08-02T08:09:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/git-suggestion/commit/?id=4151c8aee043bc4d39a7083b52ee5996adb22de8'/>
<id>4151c8aee043bc4d39a7083b52ee5996adb22de8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Config: Add description to `--remote` argument</title>
<updated>2020-08-02T07:57:52+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2020-08-02T07:57:52+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/git-suggestion/commit/?id=8203c135f87774bbab93bbba19761db9a8a6639f'/>
<id>8203c135f87774bbab93bbba19761db9a8a6639f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
