5

Gift is a node.js library that implements grit like functionality. To view remote branches, ordinarly I would do git branch -r, but I don't see any such functionality in the gift package.

Is it possible, using gift, to view all of the remote branches of a git repository and pull them down?

Shamoon
  • 41,293
  • 91
  • 306
  • 570

1 Answers1

4

Not currently (November 2013): it is still an active project, and it doesn't include any:

  • git branch -r, or
  • git ls-remote

That leaves you with the option to implement it (a bit like git remote was implemented), and propose a pull request.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250