일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 모각코
- 백준
- SWEA 15612번
- 백준 16918번
- 백준 3085번
- 자바
- 알고리즘
- 백준 17451번
- 다이나믹 프로그래밍
- 백준 1987
- 명품자바
- 백준 1253번
- 그래프
- ubuntu
- Python
- java_programming
- 백준 18310번
- 다이나믹프로그래밍
- javascript
- AWS
- react
- 백준 15787번
- 깃헙
- HUFS 모각코 캠프
- MySQL
- SQL
- 머신러닝과 딥러닝
- 그리디
- 백준 1331번
- 백준 2512번
Archives
- Today
- Total
목록Github (3)
차곡차곡
[Error] git push 에러 (fatal: The remote end hung up unexpectedly)
문제 상황 git push 하는 과정에서 해당 에러가 발생 문제 해결 1MB 보다 큰 파일이 있을 경우에 발생하는 에러라고 한다. 아래 코드 작성 후 다시 push하니 정상적으로 잘 올라갔다. git config http.postBuffer 524288000 참고 자료 : https://stackoverflow.com/questions/15240815/git-fatal-the-remote-end-hung-up-unexpectedly, https://bongbongreview.tistory.com/94
Github
2022. 8. 20. 11:16
[Error] git commit 에러 (Committing is not possible because you have unmerged files)
문제 상황 git add . 후 git commit 해줬더니 해당 에러 발생. 이는 로컬과 원격에 같은 파일이 있는데 그 로컬에서 아직 merge가 되지 않았다고 인식했기 때문이다. 문제 해결 git commit -am '커밋메시지' 참고 자료 : https://velog.io/@nsunny0908/git-GitCommitting-is-not-possible-because-you-have-unmerged-files
Github
2022. 5. 15. 00:47
[Error] git pull 에러 (Your local changes to the following files would be overwritten by merge)
문제 상황 깃헙에 .DS_Store 파일이 또 올라가 있는 걸 보고 그냥 깃헙에서 지워주고 pull 받았더니 해당 에러 발생 해결 방법 git stash # 현재 디렉토리의 파일들 임시로 백업 git pull origin main git stash pop # 변경 사항 적용하고 스택에서 제거 참고 자료 : https://goddaehee.tistory.com/253
Github
2022. 5. 15. 00:40