반응형
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
- 맥
- 오블완
- build
- webpack
- jest
- VirtualBox
- 티스토리챌린지
- MachineLearning
- qunit
- unittest
- androidstudio
- 리눅스
- 센토스
- PYTHON
- TensorFlow
- react
- xcode
- MAC
- localserver
- node
- 네트워크
- ReactNative
- Android
- 개발
- Chrome
- vsCode
- IOS
- linux
- centos
Archives
- Today
- Total
로메오의 블로그
Git 명령어 정리 본문
반응형
## git 설정값 보기
$ git config --list
## git user정보 설정
$ git config --global user.name "myname"
$ git config --global user.email "my@email.com"
## local 저장소 생성
$ git init
## local 저장소 삭제
$ rm -rf .git
## remote 저장소 설정
$ git remote add origin https://github.com/user/myproject.git
## local 저장소 현재상태
$ git status
## branch 확인 / 변경
$ git branch
* master
$ git branch -M main
$ git branch
* main
## remote 저장소 상태 확인
$ git remote -v
$ git remote rename oldname newname ## remote 저장소 이름 변경
## 파일을 Stage로 옮김
$ git add .
$ git add ./src/file1.py ./src/file2.py
## 파일을 Stage에서 내림
$ git reset .
$ git reset ./src/file1.py
## commit
$ git commit
$ git commit -m "커밋 메세지"
$ git commit -a -m "커밋 메세지" ## Staging Area에 들어간 파일만 커밋
## push
$ git push origin main
## pull
$ git pull origin main
## 인증하기
$ git remote set-url origin https://myname@github.com/myname/myproject.git
unable to access "https://github.com/~.git/" The requested URL returned error: 403
오류가 발생하면 위 명령어로 인증하기
반응형
'Frontend > ETC' 카테고리의 다른 글
typescript lint 체크 제외하기 (0) | 2021.04.09 |
---|---|
async await promise (0) | 2021.04.08 |
VSCode tab size 변경 (0) | 2021.02.13 |
자주 쓰는 GIT 명령어 정리 (0) | 2020.12.17 |
Cafe24 보안인증서SSL 설정하기 (0) | 2020.10.27 |
Comments