일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- github token
- vscode
- run sql script
- console창
- 파이썬
- php
- 따옴표 삭제
- error 해결
- clone
- database
- visualstudio code
- DataGrip
- 데이터베이스
- 깃 토큰
- jupyter
- 오류
- import data
- localhost
- MySQL
- 클론
- Python
- 에러
- PHPStorm
- Visual Studio Code
- error
- cmd
- OrCAD 다운로드
- csv
- 단축키
- github clone
- Today
- Total
목록자바 활용 알고리즘 문제풀이 : 23.12.20~24.01.17 (4)
개발 노트

오류 내용 : $ git push -u origin main To https://github.com/1010hy/algorithm.git ! [rejected] main -> main (fetch first) error: failed to push some refs to 'https://github.com/1010hy/algorithm.git' hint: Updates were rejected because the remote contains work that you do not hint: have locally. This is usually caused by another repository pushing to hint: the same ref. If you want to integrate the re..
알고리즘 문제, java코드, 출력 결과는 github에 올림 https://github.com/1010hy/algorithm_FC GitHub - 1010hy/algorithm_FC Contribute to 1010hy/algorithm_FC development by creating an account on GitHub. github.com

[초기설정] 1. 로컬저장소 만들기 소스코드 작성하는 바로 윗 폴더에서 만드는게 편함 D:\Programming\spring\FC 위치에서 우클릭 > $ git init 2. 로컬저장소에서 모든파일 커밋(모든파일을 커밋해도 변경된 사항만 올라간다.) $ git add . $ git commit 또는 코멘드 달 때 $ git commit -m "코멘드" *초기 깃 유저 설정 *변경할 author 입력 git commit --amend --author="아이디 " 4. 원격저장소 만들기. github 사이트 > new 레퍼지토리 > algorithm 하단 설명대로 두번째 줄 README파일은 설명 파일이다. 세번째 줄 ""안에는 커밋 설명을 작성한다. 네번째 줄은 브랜치 생성(혼자 작업이기 때문에 브랜치는 ..