diff options
author | sillyguodong <33891828+sillyguodong@users.noreply.github.com> | 2024-03-01 22:18:35 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-01 22:18:35 +0800 |
commit | 6841e58d1fae33311fa0239823def9dd8fba4c1f (patch) | |
tree | ce2088576cd5fea817d907b9928ae09c86b56fd5 | |
parent | cee08f634746d65ce3fb05a32dd2439f241a92e6 (diff) | |
download | gitea-6841e58d1fae33311fa0239823def9dd8fba4c1f.tar.gz gitea-6841e58d1fae33311fa0239823def9dd8fba4c1f.zip |
Ignore `__debug_bin*` which is generated by vscode when debugging (#29524)
When debugging in VSCode now, the executable file generated will come
with a random string attached.
-rw-r--r-- | .gitignore | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore index 814d910315..8f2544866a 100644 --- a/.gitignore +++ b/.gitignore @@ -15,7 +15,7 @@ _test # MS VSCode .vscode -__debug_bin +__debug_bin* *.cgo1.go *.cgo2.c |