brew install git bash-completion
Configure things:
git config --global user.name "Your Name"
git config --global user.email "you@example.com"
| import cdk = require('@aws-cdk/cdk'); | |
| import ec2 = require('@aws-cdk/aws-ec2'); | |
| import elastic = require('@aws-cdk/aws-elasticache'); | |
| import rds = require ('@aws-cdk/aws-rds'); | |
| import es = require("@aws-cdk/aws-elasticsearch"); | |
| import ecs = require('@aws-cdk/aws-ecs'); | |
| import s3 = require("@aws-cdk/aws-s3"); | |
| import elbv2 = require('@aws-cdk/aws-elasticloadbalancingv2'); | |
| import route53 = require('@aws-cdk/aws-route53'); | |
| import certificateManager = require("@aws-cdk/aws-certificatemanager"); |
| Some Jenkinsfile examples |
| URL="https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash" | |
| PROFILE="$HOME/.profile" | |
| echo "Downloading git-completion..." | |
| if ! curl "$URL" --silent --output "$HOME/.git-completion.bash"; then | |
| echo "ERROR: Couldn't download completion script. Make sure you have a working internet connection." && exit 1 | |
| fi |
brew install git bash-completion
Configure things:
git config --global user.name "Your Name"
git config --global user.email "you@example.com"
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.