일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 1992번
- 2630번
- programmers
- BinaryGap
- python
- Java
- 신규아이디추천
- SecurityFilterChain
- EBS어학당
- 18406번
- caniuse
- 1793번
- 영어
- 1057번
- 11047번
- 파이썬
- 권주현의 진짜 영국 영어
- 프로그래머스
- 1759번
- github
- codility
- 백준
- 분할정복
- 입이 트이는 영어
- Spring Security
- 2163번
- WebSecurityConfigurerAdapter
- 알고리즘
- 11727번
- 9251번
- Today
- Total
목록github (2)
철갑이의 이모저모
1. github 에서 reposiroty 생성 2. git bash 에서 command 입력 업로드 하고자 하는 프로젝트 위치에서 git bash command 실행 $ git config --global user.name "name" // 이름 입력 $ git config --global user.email "email" // 메일주소 입력 $ git init // .git 폴더 생성 $ git add 업로드할파일 // 파일이 staging area에 저장 $ git status // 상태 확인 $ git commit -m "commit 주석" // commit $ git remote add origin repository주소 // 원격 저장소 주소 등록 $ git push -u origin main..
1. fatal: Authentication failed for 'https://~' 발생시 github user id, password 확인 해당 저장소가 예전 프로젝트와 연결 되어있는지 확인 $ git remote -v // 리모트 저장소 확인 $ git remote remove origin // 저장소 다르다면 삭제 $ git remote add origin repository주소 // 원격 저장소 주소 등록 2. error: failed to push some refs to 'https://~' 발생시hint: Updates were rejected because the remote contains work that you do hint: not have locally. This is usuall..