Created
October 19, 2017 03:52
-
-
Save zhangpengGenedock/6d0fe011630c9a28762258b1c00634e0 to your computer and use it in GitHub Desktop.
git clone specific commit branch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
What else can you do? | |
How to clone repository to a specific commit? (full clone) | |
# Create empty repository to store your content | |
git clone <url> | |
git reset <sha-1> --hard | |
More info: | |
How to clone single branch? | |
git clone <url> --branch <branch_name> --single-branch <folder_name> | |
How to clone only latest commit from a given branch? | |
git clone <url> --depth=1 --branch <branch_name> --single-branch <folder_name> | |
How to shallow clone a specific commit with depth 1? | |
As @sschuberth commented out: --depth implies --single-branch. | |
Instead of clone use the fetch command: | |
# fetch a commit (or branch or tag) of interest | |
# In this case you will have the full history of this commit | |
git fetch origin <sha1> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment