| gitflow | git |
|---|---|
git flow init |
git init |
git commit --allow-empty -m "Initial commit" |
|
git checkout -b develop master |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| import sys | |
| import time | |
| import boto3 | |
| #set the AWS related environment variables in the command line: | |
| # export AWS_ACCESS_KEY_ID=< Your AWS Access Key ID > | |
| # export AWS_SECRET_ACCESS_KEY=< Your AWS Secret Access Key > |