Skip to content

Instantly share code, notes, and snippets.

[core]
editor = vim
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol
excludesfile = ~/.gitignore
autocrlf = input
[rerere]
enabled = 1
autoupdate = 1
[push]
default = matching
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active July 29, 2024 09:12
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

## Useful Commands
Get kubectl version
kubectl version
Get cluster info:
@simonista
simonista / .vimrc
Last active July 21, 2024 14:41
A basic .vimrc file that will serve as a good template on which to build.
" Don't try to be vi compatible
set nocompatible
" Helps force plugins to load correctly when it is turned back on below
filetype off
" TODO: Load plugins here (pathogen or vundle)
" Turn on syntax highlighting
syntax on