Skip to content

Clone and check out a Git repository from a CMake project

License

Notifications You must be signed in to change notification settings

threeal/git-checkout-cmake

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

60 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GitCheckout.cmake

Clone and check out a Git repository from a CMake project.

This module contains a git_checkout function for cloning a Git repository from a remote location and checking out the files based on the given reference, which can be a commit hash, branch, or tag. It also supports sparse checkout for checking out specific files from a large repository.

Key Features

  • Cloning a Git repository from a remote location.
  • Checking out a Git repository on a specific reference.
  • Support for sparse checkout.

Integration

This module can be integrated into a CMake project in the following ways:

  • Manually download the GitCheckout.cmake file and include it in the CMake project:
    include(path/to/GitCheckout.cmake)
  • Use file(DOWNLOAD) to automatically download the GitCheckout.cmake file:
    file(
      DOWNLOAD https://threeal.github.io/git-checkout-cmake/v1.1.0
      ${CMAKE_BINARY_DIR}/GitCheckout.cmake
    )
    include(${CMAKE_BINARY_DIR}/GitCheckout.cmake)
  • Use CPM.cmake to add this package to the CMake project:
    cpmaddpackage(gh:threeal/[email protected])

Example Usages

This example demonstrates how to clone and check out a Git repository hosted on GitHub:

git_checkout("https://github.com/user/project")

Specify Output Directory

Use the DIRECTORY option to specify the output directory for cloning the Git repository:

git_checkout(
  "https://github.com/user/project"
  DIRECTORY path/to/output
)

Specify Checkout Reference

By default, a Git repository will be checked out on the default branch. To check out on a specific commit hash, branch, or tag, use the REF option:

git_checkout(
  "https://github.com/user/project"
  REF latest
)

Use Sparse Checkout

To save bandwidth, it is recommended to use a sparse checkout to check out only specific files from the Git repository, especially on a large repository. To do this, use the SPARSE_CHECKOUT option to list patterns of files to be checked out sparsely:

git_checkout(
  "https://github.com/user/project"
  SPARSE_CHECKOUT src test
)

License

This project is licensed under the terms of the MIT License.

Copyright © 2024 Alfi Maulana