Chandu
Chandu

Reputation: 2049

How to tag and clone till a tag in git branch?

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

Answers (1)

the_unknown_spirit
the_unknown_spirit

Reputation: 2586

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

Upvotes: 1

Related Questions