We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 27e4131 + f547101 commit 24c161dCopy full SHA for 24c161d
Documentation/CodingGuidelines
@@ -412,6 +412,12 @@ For C programs:
412
must be declared with "extern" in header files. However, function
413
declarations should not use "extern", as that is already the default.
414
415
+ - You can launch gdb around your program using the shorthand GIT_DEBUGGER.
416
+ Run `GIT_DEBUGGER=1 ./bin-wrappers/git foo` to simply use gdb as is, or
417
+ run `GIT_DEBUGGER="<debugger> <debugger-args>" ./bin-wrappers/git foo` to
418
+ use your own debugger and arguments. Example: `GIT_DEBUGGER="ddd --gdb"
419
+ ./bin-wrappers/git log` (See `wrap-for-bin.sh`.)
420
+
421
For Perl programs:
422
423
- Most of the C guidelines above apply.
0 commit comments