반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- onsen-ui
- xlsx
- electron-nuxt
- 동일 프로세스
- Android
- onsenui
- Vue
- sort
- bucket max-key
- Vuetify
- 프로세스 방지
- f035d
- vuetifyjs
- JavaScript
- v-select
- kotlin
- sequelize
- v-text-field height
- Electron
- CSS
- error
- 동일 프로그램
- nodejs
- naver storage bucket error
- c#
- naver storage
- NUXT
- vuejs
- MySQL
- bucket cors
Archives
- Today
- Total
목록git fatal error (1)
앙큼한 개발기록
[git] fatal: 정방향이 불가능하므로, 중지합니다.
회사에서 2대의 PC를 쓰다가 다른 PC에서 git pull를 하니 해당 에러가 발생한다. fatal: 정방향이 불가능하므로, 중지합니다. 해결 방법은 간단하다. git pull --rebase 원인은 리모트 저장소가 로컬보다 앞서있고 머지할게 있을때 충돌이 일어나서 안된다는 것 git config pull option을 설정해주면 된다. 해당 설정값은 다음과 같다. git config pull.rebase false # merge (the default strategy) git config pull.rebase true # rebase git config pull.ff only # fast-forward only 여기서 git config --unset pull.ff // 또는 git config --..
개발
2022. 6. 16. 22:16