2021/02 6

git 사용자 설정하기

해당 repo에만 적용 $ git config user.name="profile name" $ git config user.email="github email" 전역 $ git config --global user.name="profile name" $ git config --global user.email="github email" 캐시에 저장하기(commit 마다 아이디, 비밀번호 물어보지 않음) $ git config --global credential.helper store 캐시에 저장한 내용 Timeout 설정(초 단위) - 예제는 한시간(3600초 = 1시간) $ git config --global credential.helper 'cache --timeout 3600'

버전관리 2021.02.26

[링크] Github README, Profile 유틸들

1. capsule renderer : README의 제목으로 사용하면 좋음 github.com/kyechan99/capsule-render kyechan99/capsule-render :rainbow: Decorate Dynamic GitHub Profile !! Contribute to kyechan99/capsule-render development by creating an account on GitHub. github.com 2. github-readme-stats : 자신의 Github 상태를 렌더링 해주는 유틸 github.com/anuraghazra/github-readme-stats anuraghazra/github-readme-stats :zap: Dynamically generated..

이것저것 2021.02.25