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
| #!/usr/bin/env bash | |
| # https://www.aria.ai/blog/posts/storing-secrets-with-keychain.html | |
| #$ security create-keychain | |
| #which will prompt us for the keychain name and password: | |
| #$ security create-keychain | |
| # keychain to create: secrets.keychain | |
| # password for new keychain: |
| #!/usr/bin/env bash | |
| # This script determines how applications in the mesh and exposed by a Service bind. | |
| # Dependencies on host: kubectl, istioctl, jq. | |
| # Dependencies on mesh: distroless is not supported, ipv6 untested. This script supports only Istio 1.8.1+. | |
| # This will `exec` into the proxy, but only run ss, so it should be suitable to run in a live cluster. | |
| # | |
| # In Istio 1.9, localhost and wildcard binds are supported out of the box. A bind to POD_IP can be enabled | |
| # with a custom Sidecar. | |
| # In future versions of Istio, we may change this to support wildcard and POD_IP binds out of the box, and |
| " Seth Kriticos' vimrc file | |
| " Last update: 2010-03-19 | |
| " Note - This configuration is for cterm mode (color terminal) | |
| " Never got around liking the GUI version | |
| " (problematic command line integration) | |
| " For GUI use, the highlight commands should be adjusted | |
| " Editor behaviour | |
| set nocompatible | |
| set autoread |
| # Please see the following blog post for more information: | |
| # | |
| # https://www.hashicorp.com/blog/using-hashicorp-vault-with-chef.html | |
| # | |
| resource_name :vault_secret | |
| property :path, String, name_property: true | |
| property :destination, String |
| ### 1. Clone your fork: | |
| git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git | |
| ### 2. Add remote from original repository in your forked repository: | |
| cd into/cloned/fork-repo | |
| git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git | |
| git fetch upstream OR git fetch --all |
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