1 2 |
git clone -b <branch> <remote_repo> |
Example:
1 2 |
git clone -b my-branch git@github.com:user/myproject.git |
Alternative (no public key setup needed):
1 |
Source: Stack Overflow
1 2 |
git clone -b <branch> <remote_repo> |
Example:
1 2 |
git clone -b my-branch git@github.com:user/myproject.git |
Alternative (no public key setup needed):
1 |
Source: Stack Overflow