Skip to content

Instantly share code, notes, and snippets.

View Fitzpa's full-sized avatar
💭
Coding

Louie Fitzpatrick Fitzpa

💭
Coding
View GitHub Profile
@Fitzpa
Fitzpa / package.json
Created July 16, 2022 20:06 — forked from jherr/package.json
Simple monorepo starter
{
"name": "packages",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"private": true,
"scripts": {
"start": "concurrently \"wsrun --parallel start\""
},
"workspaces": [
@Fitzpa
Fitzpa / Setting_upa_new_repo.md
Created February 8, 2022 03:50 — forked from alexpchin/Setting_upa_new_repo.md
Create a new repository on the command line

Setting up a new Git Repo

##Create a new repository on the command line

touch README.md
git init
git add README.md
git commit -m "first commit"

git remote add origin [email protected]:alexpchin/.git