본문 바로가기

Git/git error

[Git] git init 명령어에서 Using 'master' as the name for the initial branch. 에러가 나올 때.

본인은 AWS ec2 우분투 환경에서 배포를 하던 도중 git init 명령어를 입력했는데, 
ubuntu@ip-172-31-18-141:/docker_projects$ docker exec python bash -c "cd /python/src/ ; git init"
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
Initialized empty Git repository in /python/src/.git/​

 

이러한 hint 메시지를 출력이 됐네요,,,

메시지 첫째줄을 보면 'This default branch name' 라고 나오는데, 기본 브랜치 이름을 확인해보라는 의미입니다.

hint에 나온 메시지를 참고로 해서 아래의 명령어를 입력하면 됩니다.
# 기본 브랜치가 main 일때
$ git config --global init.defaultBranch main

# 기본 브랜치가 master 일때
$ git config --global init.defaultBranch master​


위 명령어를 입력하고, git init 명령어를 입력하면 적용이 될 것입니다!!