/notebook/git

Posts in git

Git Basics

by Dan Aukes

A place to hold git specific notes

Read More
Dealing with Dangling Commits

by Dan Aukes

External ...

Read More
Finding Large Files in repos

by Dan Aukes

```bash git rev-list --all --objects | awk '{print $1}' | git cat-file --batch-check | sort -k3n ...

Read More
Finding Submodules

by Dan Aukes

find repos/ -not \( -path repos/external -prune \) -iname .gitmodules -type f

```bash git submodule update --init ...

Read More
Git Commands

by Dan Aukes

a handy cheatsheet of my most used and looked up git commands

Read More
installing gitman on windows

by Dan Aukes

Support for multiple github accounts

install choco

Set-ExecutionPolicy AllSigned Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = ...

Read More
Git Secret

by Dan Aukes

make a new key for my_email@emailaddress.com

```bash git secret init echo "this is my secret" >> my_secret.txt echo "my_secret.txt" ...

Read More
github actions info

by Dan Aukes

Using Hugo with Github Actions

Read More