반응형
git 사용하기 (install & .gitconfig)
git install
sudo apt-get install git-core
.gitconfig 설정
vi ~/.gitconfig
[user]
name = minyunhong
email = yunhong6183@naver.com
[color]
ui = auto
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
whitespace = red reverse
[color "branch"]
current = red bold
local = green bold
remote = cyan bold
[push]
default = simple
[alias]
br = branch
co = checkout
cm = commit
cma = commit --amendi
l = log --pretty=format:\"%h%ad|%s%d:[%an]\" --graph --date=short
lo = log --oneline
st = status
p = pull
pr = pull --rebase
reshh = reset --hard HEAD
ressh = reset --soft HEAD^
[core]
autocrlf = input
editor = vim
[credential]
helper = store
반응형
'개발환경' 카테고리의 다른 글
[개발환경] notepad++ 사용팁 (0) | 2018.12.14 |
---|---|
[개발환경] c++11 사용 (0) | 2018.10.20 |
[개발환경] ubuntu chome 설치 (0) | 2018.07.29 |
[개발환경] vi(vim) 설치 및 vimrc 설정 (0) | 2018.07.29 |
[개발환경] bashrc 설정 (0) | 2018.07.29 |
댓글