I want to clone a list of branches from remote repo. What is the best way to do that without fetching everything? I saw solutions for cloning one specific branch but I need multiple branches. Thank you.
Edit: I ended up using following command to create a bundle and then using it for my purposes:
git bundle create ../BUNDLE.bundle branch1 branch2 refs/notes
And then using this bundle for my purposes.