Git - Clone branch at tag
To clone a specific tag from a GitHub repository, you can follow these steps:
1. Clone the repository
First, clone the repository without checking out the code by using the --no-checkout option:
git clone --no-checkout <repository-url>
2. Fetch the ...
indrajeetgour.hashnode.dev1 min read