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
- dependencies
- 클린코드
- node.js
- Web Storage
- 배포
- fly.io
- naver api
- Github Pages
- createRoot
- php
- npm-check-updates
- dependabot
- bucket
- 반응형
- touch event
- hooks
- s3
- qoddi
- gh-pages
- Next.js
- package.json
- react18
- .eslintrc
- aws-sdk
- react
- heroku
- AWS
- multer-s3
- CSS
- GitHub
Archives
- Today
- Total
목록Git (1)
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에 추가하기 (.gitign..
Git
2022. 3. 10. 18:16