일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 공격적 프로그래밍
- 자료구조
- rxjava
- 단위테스트
- 제한함수
- Di
- dagger2
- 깃
- Python
- 유닛테스트
- 디자인패턴
- Android
- MVVM
- 파이썬
- 테스트의 장점
- 안드로이드
- 코틀린
- mock
- Observable
- ViewModel
- 컴포즈
- Kotlin
- compose
- 안드로이드 디자인패턴
- Room
- Jetpack
- UnitTest
- 안정성
- git
- 코딩테스트
Archives
- Today
- Total
목록푸시 오류 (1)
세상을 바꾸는 개발자
[Git] 깃 오류 해결 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
안녕하세요~ 헬창코딩입니다. 깃을 처음 설치하고 로컬 저장소와 원격 저장소를 만들어서 푸시 테스트할 때 가끔 이런 메시지를 볼 수 있습니다. $ git push 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 오류의 원인은 처음 만들고 원격 저장소에 대한 기본 브랜치 설정을 안 해줬기 때문입니다. 이런 오류는 처음 브랜치 설정만 해주면 간단하게 해결이 가능합니다. $ git push --set-upstream origin master 이렇게 코드를 입력하시면 $ git pu..
기타/Git
2021. 7. 16. 19:55