<feed xmlns='http://www.w3.org/2005/Atom'>
<title>GitPython/test, branch master</title>
<subtitle>Forked from https://github.com/gitpython-developers/GitPython</subtitle>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/GitPython/'/>
<entry>
<title>git/repo/base.py: is_dirty(): Fix pathspec handling</title>
<updated>2020-09-28T12:39:17+00:00</updated>
<author>
<name>Arnaud Patard</name>
<email>apatard@hupstream.com</email>
</author>
<published>2020-09-28T12:24:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/GitPython/commit/?id=624eb284e0e6edc4aabf0afbdc1438e32d13f4c9'/>
<id>624eb284e0e6edc4aabf0afbdc1438e32d13f4c9</id>
<content type='text'>
It's possible to specify a pathspec (eg :!foo) to git diff/status/...
but it currently fails with:

git.exc.GitCommandError: Cmd('/usr/bin/git') failed due to: exit code(128)
  cmdline: /usr/bin/git diff --abbrev=40 --full-index --raw :!foo
  stderr: 'fatal: ambiguous argument ':!foo': unknown revision or path not in the working tree.

Add missing '--' to the arguments to fix this ambiguity

Signed-off-by: Arnaud Patard &lt;apatard@hupstream.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It's possible to specify a pathspec (eg :!foo) to git diff/status/...
but it currently fails with:

git.exc.GitCommandError: Cmd('/usr/bin/git') failed due to: exit code(128)
  cmdline: /usr/bin/git diff --abbrev=40 --full-index --raw :!foo
  stderr: 'fatal: ambiguous argument ':!foo': unknown revision or path not in the working tree.

Add missing '--' to the arguments to fix this ambiguity

Signed-off-by: Arnaud Patard &lt;apatard@hupstream.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix typo</title>
<updated>2020-09-09T15:10:40+00:00</updated>
<author>
<name>Eric Dill</name>
<email>thedizzle@gmail.com</email>
</author>
<published>2020-09-09T14:07:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/GitPython/commit/?id=135e7750f6b70702de6ce55633f2e508188a5c05'/>
<id>135e7750f6b70702de6ce55633f2e508188a5c05</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Ensure that detached HEAD does not raise when comparing branch name.</title>
<updated>2020-09-03T18:24:10+00:00</updated>
<author>
<name>Jeremy Retailleau</name>
<email>jeremy.retailleau@gmail.com</email>
</author>
<published>2020-09-03T18:24:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/GitPython/commit/?id=5b88532a5346a9a7e8f0e45fec14632a9bfe2c89'/>
<id>5b88532a5346a9a7e8f0e45fec14632a9bfe2c89</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add missing rules to match hierarchy path</title>
<updated>2020-09-03T00:38:43+00:00</updated>
<author>
<name>Jeremy Retailleau</name>
<email>jeremy.retailleau@gmail.com</email>
</author>
<published>2020-09-03T00:38:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/GitPython/commit/?id=c3fc83f2333eaee5fbcbef6df9f4ed9eb320fd11'/>
<id>c3fc83f2333eaee5fbcbef6df9f4ed9eb320fd11</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add unit tests</title>
<updated>2020-09-03T00:16:43+00:00</updated>
<author>
<name>Jeremy Retailleau</name>
<email>jeremy.retailleau@gmail.com</email>
</author>
<published>2020-09-03T00:16:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/GitPython/commit/?id=3dcb520caa069914f9ab014798ab321730f569cc'/>
<id>3dcb520caa069914f9ab014798ab321730f569cc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>accept datetime instances as dates</title>
<updated>2020-08-31T11:19:17+00:00</updated>
<author>
<name>Alba Mendez</name>
<email>me@alba.sh</email>
</author>
<published>2020-08-31T08:43:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/GitPython/commit/?id=4a1991773b79c50d4828091f58d2e5b0077ade96'/>
<id>4a1991773b79c50d4828091f58d2e5b0077ade96</id>
<content type='text'>
There's no easy way to re-create a commit (i.e. for rewriting purposes), because dates must be formatted as strings, passed, then parsed back.

This patch allows parse_date() to accept datetime instances, such as those produced by from_timestamp() above.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
There's no easy way to re-create a commit (i.e. for rewriting purposes), because dates must be formatted as strings, passed, then parsed back.

This patch allows parse_date() to accept datetime instances, such as those produced by from_timestamp() above.
</pre>
</div>
</content>
</entry>
<entry>
<title>test: add installation test</title>
<updated>2020-07-12T13:41:51+00:00</updated>
<author>
<name>Konrad Weihmann</name>
<email>kweihmann@outlook.com</email>
</author>
<published>2020-07-12T13:05:33+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/GitPython/commit/?id=e0b10d965d6377c409ceb40eb47379d79c3fef9f'/>
<id>e0b10d965d6377c409ceb40eb47379d79c3fef9f</id>
<content type='text'>
which installs the current codebase in a venv
and runs 'import git' to test if codebase can be
installed properly.
This adds virtualenv to the test requirements

Signed-off-by: Konrad Weihmann &lt;kweihmann@outlook.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
which installs the current codebase in a venv
and runs 'import git' to test if codebase can be
installed properly.
This adds virtualenv to the test requirements

Signed-off-by: Konrad Weihmann &lt;kweihmann@outlook.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>tests: move to root dir</title>
<updated>2020-07-12T13:01:21+00:00</updated>
<author>
<name>Konrad Weihmann</name>
<email>kweihmann@outlook.com</email>
</author>
<published>2020-07-10T16:41:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/GitPython/commit/?id=0374d7cf84ecd8182b74a639fcfdb9eafddcfd15'/>
<id>0374d7cf84ecd8182b74a639fcfdb9eafddcfd15</id>
<content type='text'>
This should ensure that tests are NOT packaged into
release package by setuptools, as tests are development
only
+ fixtures after moving

Signed-off-by: Konrad Weihmann &lt;kweihmann@outlook.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This should ensure that tests are NOT packaged into
release package by setuptools, as tests are development
only
+ fixtures after moving

Signed-off-by: Konrad Weihmann &lt;kweihmann@outlook.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert moving tests out of 'git' folder, related to #1030</title>
<updated>2020-07-12T10:04:26+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>sebastian.thiel@icloud.com</email>
</author>
<published>2020-07-12T10:04:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/GitPython/commit/?id=d5f0d48745727684473cf583a002e2c31174de2d'/>
<id>d5f0d48745727684473cf583a002e2c31174de2d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>tests: move to root dir</title>
<updated>2020-07-12T09:13:10+00:00</updated>
<author>
<name>Konrad Weihmann</name>
<email>kweihmann@outlook.com</email>
</author>
<published>2020-07-10T16:41:02+00:00</published>
<link rel='alternate' type='text/html' href='https://git.otimperi.dev/GitPython/commit/?id=5453888091a86472e024753962a7510410171cbc'/>
<id>5453888091a86472e024753962a7510410171cbc</id>
<content type='text'>
This should ensure that tests are NOT packaged into
release package by setuptools, as tests are development
only
+ fixtures after moving

Signed-off-by: Konrad Weihmann &lt;kweihmann@outlook.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This should ensure that tests are NOT packaged into
release package by setuptools, as tests are development
only
+ fixtures after moving

Signed-off-by: Konrad Weihmann &lt;kweihmann@outlook.com&gt;
</pre>
</div>
</content>
</entry>
</feed>
