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.

1 Antwort
1
Akzeptierte Antwort

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
EXPERTE
beantwortet vor 4 Monaten
profile picture
EXPERTE
überprüft vor 4 Monaten
  • 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.

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen