Horje
git clone single branch Code Example
clone specific branch
git clone --single-branch --branch <branchname> <remote-repo>
clone specific branch
In general:

git clone -b <branch> <remote_repo>

Example:

git clone -b develop git@github.com:user/myproject.git
git clone from specific branch
git clone -b branchName repoUrl
git clone single branch
# clone only the remote primary HEAD (default: origin/master)
git clone <url> --single-branch

# as in:
git clone <url> --branch <branch> --single-branch [<folder>]




Shell

Related
linux ping latency print on screen .sh file Code Example linux ping latency print on screen .sh file Code Example
rdp github shadow Code Example rdp github shadow Code Example
how to completely remove haproxy from ubuntu Code Example how to completely remove haproxy from ubuntu Code Example
ubuntu install mathpix Code Example ubuntu install mathpix Code Example
install ssh-agent Code Example install ssh-agent Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
13