Skip to content

Instantly share code, notes, and snippets.

@bomffas
bomffas / .gitconfig
Created August 17, 2022 17:00 — forked from natescode/.gitconfig
Git Aliases to make GIT easier to work with
[user]
email = your_email
name = your_username
[alias]
# git clone
cl = !git clone
# Git shallow clone for large repos
clq= !git clone --depth=1
s = status
co = checkout