-
Notifications
You must be signed in to change notification settings - Fork 83k
Update Go.ignore to add Delve compiled output #3530
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Add Go Delve debugger compiled output. Default is "./ __debug_bin" per https://github.com/go-delve/delve/blob/master/Documentation/usage/dlv_debug.md#options
Is there a way to bump this? I'd like this added too. |
+1 I add |
@@ -13,3 +13,6 @@ | |||
|
|||
# Dependency directories (remove the comment below to include it) | |||
# vendor/ | |||
|
|||
# Delve debugger compiled binary | |||
/__debug_bin |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/__debug_bin | |
__debug_bin* |
There's a new change to delve to include additional string in output binary file
source: go-delve/delve@84b757a
the other 2 PRs on this are outdated and inactive: - github#4239 - github#3530
This PR is stale because there have been no updates in 90 days. It will close after 180 days of inactivity. Leave a comment if you want to keep it open 😄 |
Add Go Delve debugger compiled output. Default is "./ __debug_bin" per https://github.com/go-delve/delve/blob/master/Documentation/usage/dlv_debug.md#options
Reasons for making this change:
The Go Delve debugger is the de-facto standard Go debugger. Add its default compiled binary to the ignore list.
Links to documentation supporting these rule changes:
https://github.com/go-delve/delve/blob/master/Documentation/usage/dlv_debug.md#options