aws codecommit put-file not working properly

0

I'm trying to push individual files to a CodeCommit repository following the instructions at https://docs.aws.amazon.com/codecommit/latest/userguide/how-to-create-file.html with AWS CLI. My command reads: aws codecommit put-file --repository-name MY_REPOSITORY --branch-name main --file-content my_file_name.py --file-path GUI/my_file_name.py --parent-commit-id a7ddbb7a99dd37c9e2c5fe378eba1187xxxxxxxx --name "Name" --email "my-email" --commit-message "Adding file from EC2 instance." The problem is that it creates the file but the content of the file is NOT the content of my_file_name.py (a bunch of python lines) but the only line of the new file reads literally my_file_name.py. Thanks.

已提問 4 個月前檢視次數 188 次
1 個回答
1
已接受的答案

To correctly upload the content of my_file_name.py, you should use the file:// prefix with the --file-content parameter, which tells the AWS CLI to read the content from the specified file. Your command should look like this:

aws codecommit put-file \
    --repository-name MY_REPOSITORY \
    --branch-name main \
    --file-content file://path/to/my_file_name.py \
    --file-path GUI/my_file_name.py \
    --parent-commit-id a7ddbb7a99dd37c9e2c5fe378eba1187xxxxxxxx \
    --name "Name" \
    --email "my-email" \
    --commit-message "Adding file from EC2 instance."

profile picture
專家
已回答 4 個月前
profile picture
專家
已審閱 4 個月前
  • This is bit odd. It works for transferring a file from the home directory but when, I try pushing from the /opt directory, it's generating the error "Error parsing parameter '--file-content': Unable to load paramfile file:///opt..."

  • You may need to use sudo to elevate access to /opt Or try file://opt/filename.py

  • Sorry but with the storm, I forgot to follow up on this matter. I had tried both options on Friday (even switching to superuser with $ sudo su) but was getting other errors. I'm accepting the answer because this seems to be the best we can do at this point, but this issue should probably be elevated either to the CLI or CodeCommit Teams.

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南