<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/gitpython.git/git/remote.py, branch 3.1.11</title>
<subtitle>github.com: gitpython-developers/GitPython.git
</subtitle>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/'/>
<entry>
<title>Fixed all warnings in documentation and updated Makefile to treat warnings as errors.</title>
<updated>2020-07-13T14:55:29+00:00</updated>
<author>
<name>Kian Cross</name>
<email>kian@kiancross.co.uk</email>
</author>
<published>2020-07-13T14:45:55+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=30387f16920f69544fcc7db40dfae554bcd7d1cc'/>
<id>30387f16920f69544fcc7db40dfae554bcd7d1cc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix exception causes in 7 modules</title>
<updated>2020-06-13T09:42:52+00:00</updated>
<author>
<name>Ram Rachum</name>
<email>ram@rachum.com</email>
</author>
<published>2020-06-12T16:00:36+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=99ba753b837faab0509728ee455507f1a682b471'/>
<id>99ba753b837faab0509728ee455507f1a682b471</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>BF: tollerate errors while parsing fetch lines</title>
<updated>2020-05-31T03:08:57+00:00</updated>
<author>
<name>Yaroslav Halchenko</name>
<email>debian@onerussian.com</email>
</author>
<published>2020-05-30T04:36:06+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=a71ebbc1138c11fccf5cdea8d4709810360c82c6'/>
<id>a71ebbc1138c11fccf5cdea8d4709810360c82c6</id>
<content type='text'>
At first I thought to provide special treatment to git config lines and
otherwise keep raising uncaught exception, but then decided that it might be
better to loose some progress information than to crash.
Also _get_push_info below is doing similarish catching of all exceptions
(although doesn't even log them).

With this change, log (if enabled and not suppressed) would show

	[WARNING] Git informed while fetching: git config pull.rebase false  # merge (the default strategy)

in the case of recently introduced change to the output in the following
git commit :

	d18c950a69f3a24e1e3add3d9fc427641f53e12b is the first bad commit
	commit d18c950a69f3a24e1e3add3d9fc427641f53e12b
	Author: Alex Henrie &lt;alexhenrie24@gmail.com&gt;
	Date:   Mon Mar 9 21:54:20 2020 -0600

		pull: warn if the user didn't say whether to rebase or to merge

		Often novice Git users forget to say "pull --rebase" and end up with an
		unnecessary merge from upstream. What they usually want is either "pull
		--rebase" in the simpler cases, or "pull --ff-only" to update the copy
		of main integration branches, and rebase their work separately. The
		pull.rebase configuration variable exists to help them in the simpler
		cases, but there is no mechanism to make these users aware of it.

		Issue a warning message when no --[no-]rebase option from the command
		line and no pull.rebase configuration variable is given. This will
		inconvenience those who never want to "pull --rebase", who haven't had
		to do anything special, but the cost of the inconvenience is paid only
		once per user, which should be a reasonable cost to help a number of new
		users.

		Signed-off-by: Alex Henrie &lt;alexhenrie24@gmail.com&gt;
		Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;

	 builtin/pull.c               | 16 ++++++++++++++++
	 t/t5521-pull-options.sh      | 22 +++++++++++-----------
	 t/t7601-merge-pull-config.sh | 38 ++++++++++++++++++++++++++++++++++++++
	 3 files changed, 65 insertions(+), 11 deletions(-)

Closes #1014
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
At first I thought to provide special treatment to git config lines and
otherwise keep raising uncaught exception, but then decided that it might be
better to loose some progress information than to crash.
Also _get_push_info below is doing similarish catching of all exceptions
(although doesn't even log them).

With this change, log (if enabled and not suppressed) would show

	[WARNING] Git informed while fetching: git config pull.rebase false  # merge (the default strategy)

in the case of recently introduced change to the output in the following
git commit :

	d18c950a69f3a24e1e3add3d9fc427641f53e12b is the first bad commit
	commit d18c950a69f3a24e1e3add3d9fc427641f53e12b
	Author: Alex Henrie &lt;alexhenrie24@gmail.com&gt;
	Date:   Mon Mar 9 21:54:20 2020 -0600

		pull: warn if the user didn't say whether to rebase or to merge

		Often novice Git users forget to say "pull --rebase" and end up with an
		unnecessary merge from upstream. What they usually want is either "pull
		--rebase" in the simpler cases, or "pull --ff-only" to update the copy
		of main integration branches, and rebase their work separately. The
		pull.rebase configuration variable exists to help them in the simpler
		cases, but there is no mechanism to make these users aware of it.

		Issue a warning message when no --[no-]rebase option from the command
		line and no pull.rebase configuration variable is given. This will
		inconvenience those who never want to "pull --rebase", who haven't had
		to do anything special, but the cost of the inconvenience is paid only
		once per user, which should be a reasonable cost to help a number of new
		users.

		Signed-off-by: Alex Henrie &lt;alexhenrie24@gmail.com&gt;
		Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;

	 builtin/pull.c               | 16 ++++++++++++++++
	 t/t5521-pull-options.sh      | 22 +++++++++++-----------
	 t/t7601-merge-pull-config.sh | 38 ++++++++++++++++++++++++++++++++++++++
	 3 files changed, 65 insertions(+), 11 deletions(-)

Closes #1014
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix flake8 errors</title>
<updated>2020-05-28T13:40:27+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>sebastian.thiel@icloud.com</email>
</author>
<published>2020-05-28T13:40:27+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=69ca329f6015301e289fcbb3c021e430c1bdfa81'/>
<id>69ca329f6015301e289fcbb3c021e430c1bdfa81</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Improve unfortunate wording</title>
<updated>2020-05-28T13:35:02+00:00</updated>
<author>
<name>Sebastian Thiel</name>
<email>sebastian.thiel@icloud.com</email>
</author>
<published>2020-05-28T13:33:26+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=9c6209f12e78218632319620da066c99d6f771d8'/>
<id>9c6209f12e78218632319620da066c99d6f771d8</id>
<content type='text'>
Fixes #1013
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes #1013
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove forced verbosity when fetching from a remote</title>
<updated>2020-04-11T07:30:09+00:00</updated>
<author>
<name>Nico</name>
<email>nicolas.g.cortes@intel.com</email>
</author>
<published>2020-04-08T21:33:20+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=1fbc2304fea19a2b6fc53f4f6448102768e3eeb2'/>
<id>1fbc2304fea19a2b6fc53f4f6448102768e3eeb2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix #820</title>
<updated>2019-10-24T07:52:58+00:00</updated>
<author>
<name>JJ Graham</name>
<email>thetwoj@gmail.com</email>
</author>
<published>2019-10-24T01:28:08+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=d85574e0f37e82e266a7c56e4a3ded9e9c76d8a6'/>
<id>d85574e0f37e82e266a7c56e4a3ded9e9c76d8a6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>removed Unnecessary “else” after “return”</title>
<updated>2019-10-15T16:47:24+00:00</updated>
<author>
<name>Pratik Anurag</name>
<email>panurag247365@gmail.com</email>
</author>
<published>2019-10-15T14:26:17+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=248ad822e2a649d20582631029e788fb09f05070'/>
<id>248ad822e2a649d20582631029e788fb09f05070</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>removed trailing whitespaces</title>
<updated>2019-10-15T13:13:01+00:00</updated>
<author>
<name>Pratik Anurag</name>
<email>panurag247365@gmail.com</email>
</author>
<published>2019-10-15T12:14:10+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=01f142158ee5f2c97ff28c27286c0700234bd8d2'/>
<id>01f142158ee5f2c97ff28c27286c0700234bd8d2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>removed trailing whitespaces</title>
<updated>2019-10-15T13:13:01+00:00</updated>
<author>
<name>Pratik Anurag</name>
<email>panurag247365@gmail.com</email>
</author>
<published>2019-10-15T12:13:42+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/gitpython.git/commit/?id=f3d0d1d6cfec28ba89ed1819bee9fe75931e765d'/>
<id>f3d0d1d6cfec28ba89ed1819bee9fe75931e765d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
