Skip to content

Latest commit

 

History

History
45 lines (35 loc) · 1.75 KB

github.md

File metadata and controls

45 lines (35 loc) · 1.75 KB

Github Profile Badge List

브랜치를 만들면서 바로 체크아웃하려면 (git checkout -b)

  • 다음 과정을 한 번에 진행
    • git branch <브랜치명>
    • git checkout <브랜치명>
git checkout -b <branch_name>

커밋 날짜 바꾸기(git commit --amend --no-edit --date)

  • 마지막 커밋 날짜를 수정하는 가장 간단한 코드
  • 오늘로 바꾸고 싶다면 날짜 텍스트 대신 $(date)으로 변경 가능
  • 1일1커밋러에게 추천
git commit --amend --no-edit --date "Sat 1 Jan 2022 00:00:00 KST"

한글 에러 방지(core.precomposeunicodem, core.quotepath)

  • 깃에서 한글 작성에서 에러가 발생함을 방지하기 위한 설정
  • 한글 작성 가능 + 파일명이 깨지지 않기
git config --global core.precomposeunicode true
git config --global core.quotepath false