관리 메뉴

진취적 삶

git alias 본문

github

git alias

hp0724 2023. 7. 6. 11:58

git 명령어 짧게 바꾸기

code .~./gitconfig 

들어가서

[core]
	editor = \"C:\\Users\\suha hwang\\AppData\\Local\\Programs\\Microsoft VS Code\\bin\\code\" --wait
[user]
	name = Suha Hwang
	email = hp980724@gmail.com
[alias]
		s = status
		l = log 
		cm = commit -m 
		b = branch 
		a = add 

위와 같이 설정해서 사용가능

'github' 카테고리의 다른 글

git tags  (0) 2023.07.06
git reflog  (0) 2023.07.06
GIT  (0) 2023.07.06
Branch  (0) 2023.07.06
merge  (0) 2023.07.06