이전 포스트
Project: JHL-Astro
이 블로그는 astro로 구성한 자체 개발 테마이다. 그에 대한 소개를 포스트하였다
git config --global credential.helper store
git commit --amend --author= "git-user <git-user@email.com>"
git log --online
아래는 결과 예시
863cd93 (HEAD -> main, origin/main) inital commit
49255d1 first commit
git config --global https.proxy https://사용자명:비밀번호@프록시주소:포트번호
git config --global --unset http.proxy
git config --global http.sslVerify false
# 리포지토리 초기화 및 원격 설정
git init def
cd def
git remote add origin https://github.com/abc/def.git
# sparse-checkout 설정
git sparse-checkout init --cone
git sparse-checkout set projects/subproject
# 리포지토리 가져오기
git pull origin main
git config --global core.quotepath false