Posts

Getting Meta-data from images and videos

by danaukes

from here

sudo apt install -y libimage-exiftool-perl

exiftool ...

Read More
Git Basics

by danaukes

A place to hold git specific notes
Read More
Dealing with Dangling Commits

by danaukes

External ...

Read More
Finding Large Files in repos

by danaukes

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

Read More
Finding Submodules

by danaukes

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

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

Read More
Git Commands

by danaukes

a handy cheatsheet of my most used and looked up git commands
Read More
installing gitman on windows

by danaukes

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 danaukes

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