Skip to content

Commit

Permalink
.gitconfig: improve git p alias (mathiasbynens#896)
Browse files Browse the repository at this point in the history
Fix a bug introduced in mathiasbynens#868, originally proposed in mathiasbynens#826.
  • Loading branch information
jeffbyrnes authored and michalsanger committed Jan 2, 2023
1 parent 34ac3c3 commit 2c3f37f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .gitconfig
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
di = !"d() { git diff --patch-with-stat HEAD~$1; }; git diff-index --quiet HEAD -- || clear; d"

# Pull in remote changes for the current repository and all its submodules
p = git pull --recurse-submodules
p = pull --recurse-submodules

# Clone a repository including all submodules
c = clone --recursive
Expand Down

0 comments on commit 2c3f37f

Please sign in to comment.