Blog: 2026-02-26: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 3: | Line 3: | ||
* command line (fish support currently) |
* command line (fish support currently) |
||
* browser (no support) |
* browser (no support) |
||
Strange sort of issue. Adding a git remote using set-url --add to `all` removes the original push url: |
|||
<pre> |
|||
fish $ git remote -v |
|||
codeberg [email protected]:razzi/fish-functions.git (fetch) |
|||
codeberg [email protected]:razzi/fish-functions.git (push) |
|||
github [email protected]:razzius/fish-functions (fetch) |
|||
github [email protected]:razzius/fish-functions (push) |
|||
origin [email protected]:~razzi/fish-functions (fetch) |
|||
origin [email protected]:~razzi/fish-functions (push) |
|||
fish $ git remote add all (git remote get-url origin) |
|||
fish $ git remote -v |
|||
all [email protected]:~razzi/fish-functions (fetch) |
|||
all [email protected]:~razzi/fish-functions (push) |
|||
codeberg [email protected]:razzi/fish-functions.git (fetch) |
|||
codeberg [email protected]:razzi/fish-functions.git (push) |
|||
github [email protected]:razzius/fish-functions (fetch) |
|||
github [email protected]:razzius/fish-functions (push) |
|||
origin [email protected]:~razzi/fish-functions (fetch) |
|||
origin [email protected]:~razzi/fish-functions (push) |
|||
fish $ git remote set-url --add --push all (git remote get-url github) |
|||
fish $ git remote -v |
|||
all [email protected]:~razzi/fish-functions (fetch) |
|||
all [email protected]:razzius/fish-functions (push) |
|||
codeberg [email protected]:razzi/fish-functions.git (fetch) |
|||
codeberg [email protected]:razzi/fish-functions.git (push) |
|||
github [email protected]:razzius/fish-functions (fetch) |
|||
github [email protected]:razzius/fish-functions (push) |
|||
origin [email protected]:~razzi/fish-functions (fetch) |
|||
origin [email protected]:~razzi/fish-functions (push) |
|||
</pre> |
|||
Latest revision as of 17:09, 26 February 2026
unifying auto spellcheck across
- text editor (vim support currently, could add emacs)
- command line (fish support currently)
- browser (no support)
Strange sort of issue. Adding a git remote using set-url --add to `all` removes the original push url:
fish $ git remote -v codeberg [email protected]:razzi/fish-functions.git (fetch) codeberg [email protected]:razzi/fish-functions.git (push) github [email protected]:razzius/fish-functions (fetch) github [email protected]:razzius/fish-functions (push) origin [email protected]:~razzi/fish-functions (fetch) origin [email protected]:~razzi/fish-functions (push) fish $ git remote add all (git remote get-url origin) fish $ git remote -v all [email protected]:~razzi/fish-functions (fetch) all [email protected]:~razzi/fish-functions (push) codeberg [email protected]:razzi/fish-functions.git (fetch) codeberg [email protected]:razzi/fish-functions.git (push) github [email protected]:razzius/fish-functions (fetch) github [email protected]:razzius/fish-functions (push) origin [email protected]:~razzi/fish-functions (fetch) origin [email protected]:~razzi/fish-functions (push) fish $ git remote set-url --add --push all (git remote get-url github) fish $ git remote -v all [email protected]:~razzi/fish-functions (fetch) all [email protected]:razzius/fish-functions (push) codeberg [email protected]:razzi/fish-functions.git (fetch) codeberg [email protected]:razzi/fish-functions.git (push) github [email protected]:razzius/fish-functions (fetch) github [email protected]:razzius/fish-functions (push) origin [email protected]:~razzi/fish-functions (fetch) origin [email protected]:~razzi/fish-functions (push)