1

I have cloned a branch. Committed and Pushed changes to master/origin. I have to tag the branch for my committed changes. Can somebody tell me how to tag till my committed changes? Also I want to know how to clone the branch till the till my tagged changes?

Thanks

Chandu
  • 1,837
  • 7
  • 30
  • 51
  • What do you mean exactly by "clone till branch"? If you clone the repository and then checkout the branch, is this sufficient? – Adi Levin Feb 05 '16 at 10:06
  • Possible duplicate of [How to git clone a specific tag](http://stackoverflow.com/questions/20280726/how-to-git-clone-a-specific-tag) – Roman Zaitsev Feb 05 '16 at 10:26

1 Answers1

1

You may use : git clone --branch <tag> <repository_url>

the_unknown_spirit
  • 2,518
  • 7
  • 34
  • 56