You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
branch: don't show remote branches by default (#109)
In busy repositories showing remote branches by default makes the `branch` command pretty uselsess
If you want to see remote branches too, use `branch -r`
pull: fix redundant submodule recursion (#94)
The "git submodule update --recursive" does not necessarily behave
the same as "git {fetch,pull} --recurse-submodules=yes" -- the latter
seem to actually explicitly go out and fetch every time? I can't quite
figure out what the ideal behavior here is.
Optionally we could just make the pull use recurse-submodules as a default,
but I don't know what kind of side effects that might introduce.
Bonus: use parallel jobs to do this. I learn something new about git
every day!
pull: add support for pnpm (js package manager) (#103)
* Adding support for pnpm package manager
* Fix typos and leftover debugging
* Add some info about PNPM and other pkg managers in the README