You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/source/tutorial.rst
+7-2
Original file line number
Diff line number
Diff line change
@@ -474,8 +474,13 @@ Using environment variables, you can further adjust the behaviour of the git com
474
474
475
475
* **GIT_PYTHON_TRACE**
476
476
477
-
* If set to non-0, all executed git commands will be logged using a python logger.
478
-
* if set to *full*, the executed git command and its output on stdout and stderr will be logged using a python logger.
477
+
* If set to non-0, all executed git commands will be shown as they happen
478
+
* If set to *full*, the executed git command _and_ its entire output on stdout and stderr will be shown as they happen
479
+
480
+
**NOTE**: All logging is outputted using a Python logger, so make sure your program is configured to show INFO-level messages. If this is not the case, try adding the following to your program::
0 commit comments