2024-01-05 15:39:50 +08:00
|
|
|
import os
|
|
|
|
import subprocess
|
|
|
|
|
|
|
|
def clone_repository(branch, commit_hash):
|
|
|
|
repository_url = "https://gitee.com/phytium_embedded/phytium-standalone-sdk.git"
|
|
|
|
target_folder = "../libraries/phytium_standalone_sdk"
|
|
|
|
|
|
|
|
# Clone the repository
|
|
|
|
subprocess.call(["git", "clone", "-b", branch, repository_url, target_folder])
|
|
|
|
|
|
|
|
# Change to the cloned repository folder
|
|
|
|
os.chdir(target_folder)
|
|
|
|
|
|
|
|
# Checkout the specific commit
|
|
|
|
subprocess.call(["git", "checkout", commit_hash])
|
|
|
|
|
|
|
|
print("Repository cloned successfully to {}".format(os.getcwd()))
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
|
|
|
|
branch_to_clone = "master"
|
2024-01-13 23:01:55 +08:00
|
|
|
commit_to_clone = "822fc36aff031d54e7c80f254fb64206ab187981"
|
2024-01-05 15:39:50 +08:00
|
|
|
|
|
|
|
clone_repository(branch_to_clone, commit_to_clone)
|