Answers for "git clone to a folder"

16

git clone with folder name

git clone [email protected]:whatever folder-name
Posted by: Guest on May-23-2020
9

git clone repo with name

git clone https://github.com/foo/repo_name.git new_directory_name
Posted by: Guest on April-07-2020
2

how to git clone into a directory

git clone [email protected]:whatever folder-name
git clone [email protected]:whatever .
Posted by: Guest on March-07-2021
1

git clone directory from repository

git clone [repo]
cd [name of sub-dir]
git filter-branch --prune-empty --subdirectory-filter [path to sub-dir] HEAD
Posted by: Guest on November-06-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language