meta:envrc: git fetch in background

Close/pipe std{in,out,err} as well as file descriptor 3 which is
apparently necessary for the subshell not to wait for the fetch to
finish.
This commit is contained in:
2022-08-28 13:36:18 +02:00
parent 6f0b433fdf
commit 95a1ecf984

View File

@@ -1 +1 @@
git fetch --all
git fetch --all 0<&- &>/dev/null 3>&- & disown