0

How can I execute a git pull form many repositories? It's possible using GitExtension?

carlspring
  • 31,231
  • 29
  • 115
  • 197
DaxDeveloper
  • 138
  • 1
  • 13

1 Answers1

0

Assuming you mean to fetch from every branch the command is

git fetch --all

Other than there there is no auto merging strategy for such a pull.

CoasterChris
  • 91
  • 1
  • 10