Run this command to remember your password:
git config --global credential.helper 'cache --timeout 28800'Above command will tell git to cache your password for 8 hours.
| import boto3 | |
| # http://boto3.readthedocs.io/en/latest/reference/services/ec2.html#service-resource | |
| ec2 = boto3.resource('ec2', aws_access_key_id='AWS_ACCESS_KEY_ID', | |
| aws_secret_access_key='AWS_SECRET_ACCESS_KEY', | |
| region_name='us-west-2') | |
| # create VPC | |
| vpc = ec2.create_vpc(CidrBlock='192.168.0.0/16') | 
| # to generate your dhparam.pem file, run in the terminal | |
| openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 | 
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream