Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

git fetch branches with specified prefix

I have following branches in remote origin.

ft_d_feature_abc
ft_d_feature_xyz
ft_d_feature_lam
ft_d_feature_ton
ft_m_feature_mak
ft_m_feature_echo
ft_m_feature_laa
ft_m_feature_pol

I want to fetch branches which are starting with ft_d. How can I achieve this with git fetch? My Git version is 1.7.9.5.

like image 500
dnsh Avatar asked Nov 24 '16 11:11

dnsh


People also ask

Can you git fetch a specific branch?

You can fetch a specific branch from remote with git fetch <remote_name> <branch_name> only if the branch is already on the tracking branch list (you can check it with git branch -r ).

What does git fetch prune do?

git fetch --prune is the best utility for cleaning outdated branches. It will connect to a shared remote repository remote and fetch all remote branch refs. It will then delete remote refs that are no longer in use on the remote repository.


2 Answers

Since Git version 2.6, you can specify partial substrings (with simple glob-style matching) in a fetch or push refspec. Hence:

git fetch origin 'refs/heads/ft_d*:refs/remotes/origin/ft_d*'

would do what you are asking for. Generalized regular expressions are not available, nor generalized globs: only the one specific case of * matching everything between two fixed strings is allowed. (Some fixed strings here may be empty. Usually the back half is, i.e., we usually fetch refs/heads/*, not refs/heads/*x to get just branches whose name ends in x.)

If your Git is older than 2.6, there is no simple way to do this in one fetch. You will need multiple fetches, in a loop, and you will need to do your own name-matching, perhaps using the output from git ls-remote.

(Of course, git fetch origin will normally just bring everything over, as specified in the remote.origin.fetch configuration entry or entries, and in most cases there's little point in constraining git fetch this way. Are you sure you want to bother?)

like image 124
torek Avatar answered Sep 21 '22 19:09

torek


I'm not sure Git supports regexes for fetching a branch, however, you can create a simple script that does it for you:

for i in {1..3};
do
    git fetch origin ft_d_feature$i
done
like image 36
Maroun Avatar answered Sep 20 '22 19:09

Maroun