Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 549 Bytes

README.md

File metadata and controls

26 lines (22 loc) · 549 Bytes

git-alias

For Windows

copy these lines below and paste in .gitconfig file on C:\Users\{user}.

For MacOs

copy these lines below and past in .gitconfig file on ~.

[alias]
	hide = update-index --assume-unchanged
	unhide = update-index --no-assume-unchanged
	co = commit
	st = status
	ch = checkout
	di = diff --color-words
	br = branch
    	ph = push
	pl = pull
	cob = checkout -b
	cm = !git add -A && git commit -m
	fc = !git fetch && git checkout
	save = !git add -A && git commit -m 'SAVEPOINT'
	wip = commit -am "WIP"