Skip to content

Instantly share code, notes, and snippets.

@rcreasi
rcreasi / git-tricks-and-tips.md
Created February 10, 2026 18:37
Git Tricks & Tips

Git Tricks & Tips

A collection of custom scripts, aliases, and configuration tips for a better Git workflow.


Quick Tips & Config

Git Aliases

function realFactorial(n) {
let result = n;
for (let i = 1; i < n; i++) {
result *= i;
}
return result;
}