does git have functionality lke cvs's rtag
- by user1663987
In CVS, we could programatically create a new branch of existing source using the "rtag" command, which did not require a copy of the repository.
Does git support functionality of this kind, making a branch of existing files in a remote git repository without having a local copy of it? Or does the distributed nature of git preclude this?
(I'm…