February 2015 |
|
April 2015 |
git branch -d <branchName>
To remove a remote branch (if you know what you are doing!)
git push origin --delete <branchName>
pip install --upgrade --user awscli
Then include the install path in my .bash_profile:
export PATH=~/Library/Python/2.7/bin:$PATH
complete -C '~/Library/Python/2.7/bin/aws_completer' aws
To make sure everything is working:
$ aws --version
aws-cli/1.11.92 Python/2.7.10 Darwin/16.5.0 botocore/1.5.55
Next step is to configure AWS-CLI:
$ aws configure
I was prompted to type "AWS Access Key ID", "AWS Secret Access Key", "Default region name", and "Default output format" in that order. Now I am ready to copy files!
$ aws s3 cp s3://<bucket_name>/<file_path> .
Up-to-date instructions related to AWS Command Line Interface can be found at:
http://docs.aws.amazon.com/cli/latest/userguide/cli-chap-welcome.html
Cyberduck is an open source GUI-based client to access AWS S3 files.
https://cyberduck.io