>명령어
git config --global init.defaultBranch main
git : git 명령어 사용 의미
config : git의 설정을 담당하는 명령어
--global : 현재 깃 사용자의 모든 저장소 설정에 적용할 수 있게 하는 옵션
init.defaultBranch : git init 명령어 사용 시, 기본 값으로 설정되는 branch 명을 변경하겠다는 명령어
main : default branch name
//추가 정보
git config --unset <이름> : 특정 설정을 지우는 옵션
git config --get init.defaultBranch : 현재 default branch name이 무엇인지 검색
'Memo > 짧은 메모' 카테고리의 다른 글
[cmd] where 명령어 (0) | 2022.12.31 |
---|---|
[Git] .idea 디렉토리 & .iml 파일 (0) | 2022.12.18 |
[Spring] Spring Rest Docs (0) | 2022.11.29 |
[Spring] Mapstruct, Mapper (0) | 2022.11.29 |
[Spring] Appendices 찾기(.yml) (0) | 2022.11.28 |