내용으로 건너뛰기
Out of the Box
사용자 도구
로그인
사이트 도구
검색
도구
문서 보기
이전 판
Fold/unfold all
역링크
최근 바뀜
미디어 관리자
사이트맵
로그인
>
최근 바뀜
미디어 관리자
사이트맵
추적:
•
godot
•
a3c
•
command
•
apt
git
이 문서는 읽기 전용입니다. 원본을 볼 수는 있지만 바꿀 수는 없습니다. 문제가 있다고 생각하면 관리자에게 문의하세요.
* [[http://jeonghwan-kim.github.io/dev/2020/02/10/git-usage.html|깃(Git) 개념과 상황별 팁]] * https://twitter.com/jayjinjay/status/1137277247797178369 * https://twitter.com/jayjinjay/status/1136673237813776384 ====== Git ====== <code bash> git status </code> ===== user.name/email 설정 ===== <code bash> git config --global user.name "Mona Lisa" git config --global user.email "mona@lisa.com" </code> ===== .gitignore가 작동하지 않을 때 ===== <code bash> git rm -r --cached . git add . git commit -m "fixed untracked files" </code> * https://jojoldu.tistory.com/307 ===== Ubuntu에서 git 비밀번호 계속 물어보지 않도록 설정 ===== password 캐시해서 암호 물어보지 않음 git config --global credential.helper cache * https://mansoo-sw.blogspot.com/2019/03/linux-macos-git.html ===== 클라이언트 ===== * https://jonas.github.io/tig/ * https://programmingsummaries.tistory.com/390 ===== LF/CRLF ===== 커밋할 때 LF로 변경 <code bash> # 설정 $ git config --global core.eol lf # 설정 확인 $ git config --global --list | grep core.eol </code> * https://www.lesstif.com/pages/viewpage.action?pageId=20776404 ===== 인증정보 캐시 ===== Windows <code bash> git config --global credential.helper wincred </code> Linux <code bash> git config --global credential.helper cache </code> * https://docs.github.com/en/github/using-git/caching-your-github-credentials-in-git ===== 특정 commit 제거 ===== <code bash> git revert --strategy resolve <commit-id> </code> * https://www.lainyzine.com/ko/article/git-revert-reverting-commit-in-git-repository/ ===== cherry-picking ===== <code bash> git cherry-pick <commit-id> </code> * https://medium.com/react-native-seoul/git-cherry-pick-%EC%82%AC%EC%9A%A9%EB%B2%95-fe1a3346bd27 {{tag>git}}
git.txt
· 마지막으로 수정됨: 2025/03/31 14:56 저자
rex8312
문서 도구
문서 보기
이전 판
역링크
Fold/unfold all
맨 위로