Answers for "git clone commit steps"

1

clone commit of a branch

> git clone -b <branch-name> <remote-repo>
> cd <repo-name>
> git checkout -b <new-branch-name> <commit-id>
> code .
Posted by: Guest on October-06-2021
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