Skip to content

mobeenali12/git-alias

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 

Repository files navigation

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"

Releases

No releases published

Packages

No packages published