Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Activity for InfiniteDissentâ€
Type | On... | Excerpt | Status | Date |
---|---|---|---|---|
Edit | Post #293422 |
Post edited: Add in alternative using `git -c` instead of environment variable |
— | 6 days ago |
Edit | Post #293422 | Initial revision | — | 7 days ago |
Answer | — |
A: Get global gitconfig path This works for me in both `bash` and `zsh` on Debian 12. I can't guarantee it will work the same on every platform and shell. ```bash EDITOR=echo git config --global --edit 2>/dev/null ``` or, if you prefer not to rely on environment variables: ```bash git -c "core.editor=echo" config --g... (more) |
— | 7 days ago |