Reputation: 2049
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
Upvotes: 1
Views: 72
Reputation: 2586
You may use : git clone --branch <tag> <repository_url>
Upvotes: 1