Skip to content

Commit

Permalink
Adds GIT_TERMINAL_PROMPT=0 to fetch-all and pull-all git aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
kenorb committed Jan 24, 2024
1 parent 6a3d557 commit 5ca231b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .gitconfig
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ clean = "sed -e 's/^password=.*/#password=TODO/'"
fo = fetch origin
fom = fetch origin master
fommom = !git fetch origin master && git merge origin/master
fetch-all = !"find . -name .git -type d -print -execdir git fetch --all \\;"
fetch-all = !"GIT_TERMINAL_PROMPT=0 find . -name .git -type d -print -execdir git fetch --all \\;"
exclude = !echo >> .git/info/exclude
l = log
log-graph = log --oneline --graph --decorate --all
Expand All @@ -205,7 +205,7 @@ clean = "sed -e 's/^password=.*/#password=TODO/'"
pg = pull github
po = pull origin
pom = pull origin master
pull-all = !"find . -name .git -type d -print -execdir git pull origin \\;"
pull-all = !"GIT_TERMINAL_PROMPT=0 find . -name .git -type d -print -execdir git pull origin \\;"
pull-forks = "!git submodule foreach 'git pull `git config --get remote.origin.url | sed s#EXAMPLE#kenorb#`&'"
rb = rebase
rba = rebase --abort
Expand Down

0 comments on commit 5ca231b

Please sign in to comment.