Skip to content
This repository has been archived by the owner on Feb 18, 2020. It is now read-only.
/ gitconfig Public archive

My preferred Git configuration stuff ⚙️

Notifications You must be signed in to change notification settings

CarlEkman/gitconfig

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 

Repository files navigation

Git Config

This is just a remote storage of my preferred .gitconfig aliases.

[alias]
	a = add .
	m = checkout master
	ci = commit
	cm = commit -m
	ca = !git add . && git commit -m
	co = checkout
	br = branch
	st = status
	pu = push -u origin
	rem = !git fetch && git rebase origin/master
	ucl = git commit -am "[ci skip] Update CHANGES.md"
	fix = commit --amend --no-edit
	wip = commit -a -m "WIP"
	piw = reset HEAD~1
	last = diff HEAD~1
	plog = log --pretty=format:'%h %ad | %s%d [%an]' --graph --date=short
	nuke = !git add . && git reset --hard HEAD
	fpush = push --force-with-lease

About

My preferred Git configuration stuff ⚙️

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published