paritybit.ca

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit fc50b46ca9736654bb894367a54ddab4e450b647
parent e1b272dbb5932096a7797f5e13b42c6c19854904
Author: Jake Bauer <jbauer@paritybit.ca>
Date:   Wed,  8 Mar 2023 19:49:57 -0500

*

Diffstat:
Mcontent/garden/git.md | 19++++++++++++-------
Mcontent/garden/philosophy-software-development.md | 2++
Mcontent/links.md | 1+
3 files changed, 15 insertions(+), 7 deletions(-)

diff --git a/content/garden/git.md b/content/garden/git.md @@ -5,9 +5,20 @@ Summary: Using Git [← Back](./) - Mostly things I don't do often and want a quick reference for. +## Undo a Commit + +``` +git reset --soft HEAD^ +``` + +## Generating a Changelog + +``` +git shortlog --numbered <previous_tag>..HEAD +``` + ## Making a Release Create an annotated tag: @@ -34,9 +45,3 @@ Add the following to ~/.config/git/config to make that default behaviour when do [push] followTags = true ``` - -## Generating a Changelog - -``` -git shortlog --numbered <previous_tag>..HEAD -``` diff --git a/content/garden/philosophy-software-development.md b/content/garden/philosophy-software-development.md @@ -97,3 +97,5 @@ Lifted quote from Milo Fultz on Fedi, need to incorporate somehow [malleablesystems]: [Malleable Systems](https://malleable.systems/mission/#principles) [trivialtechnology]: [Trivial Technology](https://trivial.technology/) [humanscale]: [Human Scale Software](https://permacomputing.net/human-scale/) + +[Vibe Driven Development](https://www.robinrendle.com/notes/vibe-driven-development/) diff --git a/content/links.md b/content/links.md @@ -153,6 +153,7 @@ Useful links that I've collected and wish to share or remember for the future. E <li><a href="https://justforfunnoreally.dev/">Just for Fun. No, Really.</a> - Send this link to anyone who asks questions like "what's the point of this?" whenever you're showing off something that you built just for fun.</li> <li><a href="https://vimeo.com/748032161">What makes a good developer by Christin Gorman</a></li> <li><a href="https://morepablo.com/2022/09/so-you-re-using-a-weird-language.html">So You're Using A Weird Language</a> - How to effectively use a weird (or unpopular) programming language.</li> +<li><a href="https://www.robinrendle.com/notes/vibe-driven-development/">Vibe Driven Development</a></li> </ul> </details>