@because/cfn-init-toolbox
v0.0.12
Published
My cfn-init toys
Downloads
6
Readme
https://stackoverflow.com/questions/7927750/specify-an-ssh-key-for-git-push-for-a-given-domain
- set up Host in ~/.ssh/config
- note the name of the host: [hostname]
https://hands-on.cloud/how-to-manage-multiple-codecommit-repositories-from-the-single-machine/
- git init
- git config --local credential.helper "!aws --profile ixsoftware-cli codecommit credential-helper $@"
- git config --local credentialhelper.UseHttpsPath "true"
- git remote add origin ssh://[hostname]/v1/repos/my_repository
- echo '# My Awesome Project' >> README.md
- git add .
- git commit -m 'Initial commit'
- git push -u origin master
https://itnext.io/step-by-step-building-and-publishing-an-npm-typescript-package-44fe7164964c?gi=7d0161f7a045
npm init -y
echo "node_modules" >> .gitignore
npm install --save-dev typescript
npm version patch && npm publish