Edward Yang
Edward Yang
Also doesn't work with a full file URL ``` $ git push file:///home/edy/tmp/bar HEAD:refs/heads/foobar Total 0 (delta 0), reused 0 (delta 0) To file:///home/edy/tmp/bar * [new branch] HEAD -> foobar...
`git meta push origin HEAD:ref1 HEAD:ref2` pushes all open submodules twice (in parallel) - sometimes causing lock failures on the synthetic ref in the submodules.
Relates to #277. Probably fixable together.
I just had this happen with no submodules open.
Yup absolutely. Node 10.x LTS started on 2018/10 so we should do the work to support it. As for non-LTS current releases (eg. 11.x), it seems unlikely we'd support them.
bash and zsh provide tab-completion through bash scripts. - git uses this (natively) through a (large) [bash script](https://github.com/git/git/blob/master/contrib/completion/git-completion.bash). - npm decided to use this a little differently, they have the...