일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- GIT
- urllib
- PyQt5
- node.js
- 날짜
- sqlite
- IOS
- mssql
- MS-SQL
- tensorflow
- 유니티
- 라즈베리파이
- flutter
- port
- pandas
- swift
- 다이어트
- MySQL
- PyQt
- 맛집
- Excel
- javascript
- 리눅스
- ubuntu
- PER
- 함수
- Unity
- ASP
- python
- Linux
목록remote (3)
아미(아름다운미소)
There is no tracking information for the current branch. Please specify which branch you want to merge with. See git-pull(1) for details. git pull If you wish to set tracking information for this branch you can do so with: git branch --set-upstream-to=origin/ master ============================================== -u`나 `--set-upstream-to 옵션 줘서 로컬 master가 origin/master를 추적하게끔 해줍니다. $git branch --se..
기존 리포지토리 remote 제거 $git remote remove origin 새 리포지토리 remote 추가 $git remote add origin https://github.com/계정/리포지토리 리포지토리확인 $git remote --v
remote리모트 저장소 목록로컬 저장소에 등록된 리모트 저장소를 모두 출력하되 단축이름만 표시합니다.git remote리모트 저장소 URL 확인리모트 저장소의 단축이름과 URL을 표시합니다.git remote -v리모트 저장소 URL 바꾸기git remote set-url origin https://github.com/USERNAME/REPOSITORY.git리모트 저장소 추가git remote add 단축이름 주소git remote add remoteRepo https://noritersand@dev.naver.com/git/exlernforscm.git리모트 저장소 살펴보기특정 로컬 저장소의 구체적인 정보(URL, 추적중인 브랜치 등)를 표시합니다.git remote show origin # ori..