mathiasbynens / dotfiles

:wrench: .files, including ~/.macos — sensible hacker defaults for macOS
https://mths.be/dotfiles
MIT License
30.04k stars 8.75k forks source link

Simplify git p alias #868

Closed jeffbyrnes closed 4 years ago

jeffbyrnes commented 5 years ago

This uses the git pull --recurse-submodules argument to avoid the compound command of the previous version of this alias.

naoisegolden commented 4 years ago

This broke the alias

expansion of alias 'p' failed; 'git' is not a git command
jeffbyrnes commented 4 years ago

@naoisegolden oh dang, I see the problem; it should be this:

p = pull --recurse-submodules

I’ll open a new PR.