能否将包含各种代码文件的文件夹从本地系统上传到AWS CodeCommit。如果是,那么要遵循什么步骤??
答案 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