I am setting up a script to update our local repositories and I have had to manually add the remote repository I would like to pull from (please see code below currently set to "Staging"). What would be a good way or best practice to pull from all remote repositories and not have to specify them individually?
Is there a wildcard to pull all such as:
repo.remotes.origin.pull(*)
Currently written as:
repo.remotes.origin.pull("Staging")