사용자 도구

사이트 도구


git

Git

git status

user.name/email 설정

git config --global user.name "Mona Lisa"
git config --global user.email "mona@lisa.com"

.gitignore가 작동하지 않을 때

git rm -r --cached .
git add .
git commit -m "fixed untracked files"

Ubuntu에서 git 비밀번호 계속 물어보지 않도록 설정

password 캐시해서 암호 물어보지 않음

git config --global credential.helper cache

클라이언트

LF/CRLF

커밋할 때 LF로 변경

# 설정
$  git config --global core.eol lf
 
# 설정 확인
$ git config --global --list | grep core.eol

인증정보 캐시

Windows

git config --global credential.helper wincred

Linux

git config --global credential.helper cache

특정 commit 제거

cherry-picking

git.txt · 마지막으로 수정됨: 2025/03/31 14:56 저자 rex8312