将文件夹上传到AWS CodeCommit存储库

时间:2019-03-04 13:30:19

标签: amazon-web-services aws-codecommit

能否将包含各种代码文件的文件夹从本地系统上传到AWS CodeCommit。如果是,那么要遵循什么步骤??

1 个答案:

答案 0 :(得分:0)

我认为无法通过UI上传整个文件夹。我认为这是使用现有git存储库的最简单方法,如下所示:

SCHEME="codecommit::${REGION}"
aws sts get-caller-identity # requires AWS credentials, with authorization
pip install git-remote-codecommit # using HTTPS GRC
git push -u ${SCHEME}://${TARGET_REPO} HEAD:refs/heads/master