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
- Web Storage
- AWS
- 반응형
- aws-sdk
- npm-check-updates
- package.json
- createRoot
- react
- hooks
- bucket
- react18
- gh-pages
- php
- GitHub
- multer-s3
- CSS
- naver api
- .eslintrc
- Next.js
- node.js
- dependabot
- s3
- fly.io
- qoddi
- 클린코드
- heroku
- Github Pages
- dependencies
- 배포
- touch event
Archives
- Today
- Total
Ann's log
[Git] Git 명령어 정리 본문
새로 배울때마다 계속 해서 업데이트 할 예정.
- Git 저장소 초기화
git init
- Git config list 보기 (사용자 이메일, 이름 등의 정보를 볼 수 있음)
git config --list
- 전역적으로 사용자 이름 정보 변경하기
git config --global user.name "사용자이름"
- 전역적으로 사용자 이메일 정보 변경하기
git config --global user.email "이메일 주소"
- GitHub 원격 저장소 추가하기
git remote add origin https://github.com/[github 계정 이름]/[저장소 이름].git
- 기존 저장소 remote 제거하기
git remote remove origin
- 모든 파일의 변경 사항을 git에 추가하기 (.gitignore 파일에 포함되어 있는 것은 제외)
git add .
- commit 하기
git commit -m "커밋 메세지"
- main 브랜치로 지정하기
git branch -M main
- main 브랜치에 commit 내용 업데이트하기
git push -u origin main
- 원격 저장소에 저장된 내용으로 로컬 저장소 파일 업데이트하기
git pull origin main
- GitHub 원격 저장소의 파일 복제하기
git clone https://github.com/[github 계정 이름]/[저장소 이름].git
- git commit 기록 보기 (q 입력하면 나갈 수 있음)
git log
Comments