Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/amazon-web-services/13.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Amazon web services 将文件夹上载到AWS CodeCommit存储库_Amazon Web Services_Aws Codecommit - Fatal编程技术网

Amazon web services 将文件夹上载到AWS CodeCommit存储库

Amazon web services 将文件夹上载到AWS CodeCommit存储库,amazon-web-services,aws-codecommit,Amazon Web Services,Aws Codecommit,我们可以从本地系统将包含各种代码文件的文件夹上载到AWS CodeCommit吗。?如果是,那么接下来的步骤是什么?我认为不可能通过UI上传整个文件夹。我认为这是使用现有git存储库最简单的方法,如下所示: SCHEME="codecommit::${REGION}" aws sts get-caller-identity # requires AWS credentials, with authorization pip install git-remote-codecommit # usin

我们可以从本地系统将包含各种代码文件的文件夹上载到AWS CodeCommit吗。?如果是,那么接下来的步骤是什么?

我认为不可能通过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

嘿,吉特,欢迎来到StackOverflow。如果我没弄错的话,你在找这样的东西?