Skip to content

Commit 532250e

Browse files
committed
Merge remote-tracking branch 'upstream/master'
* upstream/master: .gitconfig: improve `git p` alias (mathiasbynens#896) .exports: Hide zsh warning on macOS
2 parents 2521bb8 + d600133 commit 532250e

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.exports

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,6 @@ export MANPAGER='less -X';
3333
# Avoid issues with `gpg` as installed via Homebrew.
3434
# https://stackoverflow.com/a/42265848/96656
3535
export GPG_TTY=$(tty);
36+
37+
# Hide the “default interactive shell is now zsh” warning on macOS.
38+
export BASH_SILENCE_DEPRECATION_WARNING=1;

.gitconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@
181181
di = !"d() { git diff --patch-with-stat HEAD~$1; }; git diff-index --quiet HEAD -- || clear; d"
182182

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

186186
# Clone a repository including all submodules
187187
c = clone --recursive

0 commit comments

Comments
 (0)