Getting started:
Related tutorials:
Getting started:
Related tutorials:
rebase vs merge).rebase vs merge)reset vs checkout vs revert)git rev-parse)pull vs fetch)stash vs branch)reset vs checkout vs revert)| # delete local tag '12345' | |
| git tag -d 12345 | |
| # delete remote tag '12345' (eg, GitHub version too) | |
| git push origin :refs/tags/12345 | |
| # alternative approach | |
| git push --delete origin tagName | |
| git tag -d tagName |
| { | |
| "editor.fontSize": 14, | |
| "editor.formatOnPaste": true, | |
| "editor.multiCursorModifier": "ctrlCmd", | |
| "editor.snippetSuggestions": "top", | |
| "files.autoSave": "off", | |
| "files.exclude": { | |
| "__pycache__": true, | |
| "__pychache__": true, | |
| "*.pyc": true, |
| export default defineEventHandler(async (event): Promise<any> => { | |
| const { apiBaseUrl } = useRuntimeConfig(); | |
| if (!apiBaseUrl) { | |
| throw new Error("Missing `runtimeConfig.apiBaseUrl` configuration."); | |
| } | |
| const { method, url, headers: originalClientHeaders } = event.node.req; | |
| const headersForFetch: Record<string, string> = {}; | |
| if (originalClientHeaders) { |
| export default defineEventHandler(async (event): Promise<any> => { | |
| const { apiBaseUrl } = useRuntimeConfig(); | |
| if (!apiBaseUrl) { | |
| throw new Error("Missing `runtimeConfig.apiBaseUrl` configuration."); | |
| } | |
| const { method, url, headers: originalClientHeaders } = event.node.req; | |
| const headersForFetch: Record<string, string> = {}; | |
| if (originalClientHeaders) { |