Answers for "git clone a specific release"

0

git clone specific version

#For cloning a specific version of a repo branch find the SHA1 ID and use
#following commands instruction
git clone $URL
cd $PROJECT_NAME
git reset --hard $SHA1
git pull
Posted by: Guest on November-26-2020
0

git clone a specific release

$ git clone github.com/mygitname/theproject --branch 1.0.2
Posted by: Guest on September-04-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language