Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to pull from many repos with tortoisegit?

I have many different repos residing in the same directory (about 20). I would like to stay up-to-date with the rest of my team and perform a "git pull" for all of the repos at every morning.

Is there a faster way than doing a "right-click -> git sync -> pull" for every single repo?

like image 351
Thomas Schreiter Avatar asked Sep 11 '13 00:09

Thomas Schreiter


People also ask

What is pull in TortoiseGit?

Fetch just downloads the objects and refs from a remote repository and normally updates the remote tracking branches. Pull, however, will not only download the changes, but also merges them - it is the combination of fetch and merge (cf. the section called “Merging”).

How do I use TortoiseGit checkout?

From the TortoiseGit Manual, you can open the "Switch/Checkout" dialog by right-clicking on the repository's folder and clicking "Switch/Checkout...", then selecting the "Tag" radio button and selecting your tag (in this case, v1. 5 ). Save this answer. Show activity on this post.

Can a repository have multiple repositories?

With Git, using multiple repositories is the only way to work efficiently. This enables each team to work independently, and do their work faster. You can also make sure that developers only have access to the repositories they need access to (thus making Git more secure.)


1 Answers

No, as of TortoiseGit 1.8.5. You have to pull all repositories many times.

But you can suggest this as an enhancement in TortoiseGit's issue tracker.

like image 129
linquize Avatar answered Oct 06 '22 23:10

linquize