일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 단위테스트
- mock
- 테스트의 장점
- compose
- Jetpack
- 디자인패턴
- Observable
- 유닛테스트
- Room
- 컴포즈
- 코딩테스트
- git
- 코틀린
- 제한함수
- Di
- Kotlin
- 안드로이드
- 자료구조
- 파이썬
- 안정성
- rxjava
- 안드로이드 디자인패턴
- Python
- UnitTest
- 공격적 프로그래밍
- 깃
- dagger2
- Android
- MVVM
- ViewModel
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