반응형
오류 메시지
fatal: The current branch master has no upstream branch.
To push the current branch and set the remote as upstream, use
git push --set-upstream origin master
오류 상황
1. 로컬 컴퓨터에서 git init 으로 생성
2. 파일 생성 (readme, gitignore 등등)
3. git repository 생성
4. git add .
5. git commit -m "initial commit"
6. git remote add origin 주소
7. git push ----->>>> 문제발생
오류 해결
1. 터미널에 아래 입력
git push --set-upstream origin master
2. Username 입력
3. Password 입력 : 이때 주의!! 로그인 비밀 번호가 아니라, 계정에서 발급받았던 토큰을 입력받아야 함.
해결!!
반응형
'소프트웨어자료 > 깃' 카테고리의 다른 글
Mac 에서 git 사용할 때 에러 해결. You have not agreed to the Xcode license agreements. (0) | 2022.09.25 |
---|---|
fatal: Authentication failed for 'https://github.com/repository.git' 문제 해결 (0) | 2021.12.21 |
Git 시작하기 (with github) (0) | 2020.03.28 |