Skip to content

Instantly share code, notes, and snippets.

View jerdog's full-sized avatar
:dependabot:
Three AI bots in a trenchcoat

Jeremy Meiss jerdog

:dependabot:
Three AI bots in a trenchcoat
View GitHub Profile
# This config is equivalent to both the '.circleci/extended/orb-free.yml' and the base '.circleci/config.yml'
version: 2.1
orbs:
node: circleci/[email protected]
jobs:
deploy:
docker:
- image: cimg/node:16.6.0
# CircleCI NodeJS Starter Config
version: 2.1
jobs:
test:
docker:
- image: cimg/node:lts
steps:
- checkout
- run:
name: Install dependencies

Git processes I forget

Sometimes I forget this shit... So easy to hold onto it instead of constantly googling.

Pushing to a new remote repo.md

git init
git add -A
git commit -m ""
git remote add origin [email protected]:jerdog/my-new-project.git