일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- airflow
- API
- python
- MySQL
- GIT
- module
- ELK
- EKS
- GCP
- EC2
- elasticsearch
- powershell
- Automation
- ansible
- ubuntu
- apt
- 시스템자동화
- 자동화
- crawling
- AWS
- 8.0
- 데이터 분석
- tcp
- kibana
- Selenium
- DB
- 크롤링
- zabbix
- 5.0
- Linux
- Today
- Total
Oops - IT
Git 시작하기 본문
1. Git 생성
: 저장소 생성 완료 후 Comment.js 파일 작업 완료 후
: 저장소에 해당 내용 반영을 원함
working directory -> staging area [ git add ]
staging area -> repository [git commit]
[파일의 상태 Life Cycle]
Untracked
Unmodified
Modified
Staged
2. Git 명령어
#git add comment.js
: comment.js 파일을 staging area로 보냄
#git add user.js
: user.js 파일을 staging area로 보냄
#git add .
: 현재 디렉토리의 전체 파일을 모두 staging area로 보냄
#git status
: Staging area의 어떤 파일이 변경되었는지 등의 파일의 상태 확인
#git commit
: .git 저장소 내에 Staging 파일 저장
: staging area의 파일을 repository로 저장
#git commit -m "[NAME]"
: 반영 내용을 추후에 쉽게 알기 위해 적절한 메세지 [Name]에 입력
#git commit --amend
: 앞에서 적은 메세지에 오타나 누락 파일이 있을 경우 수정
#git log
: 저장소 반영 내역 확인
#git status
: Staging file들의 상태 확인
#git log
: .gitrepository에 존재하는 history 확인
#git rest [File_Name]
: add 명령어 취소
: Commit된 파일 수정 시 깃의 반응
: Modified: Commit된 파일 중 수정된 파일이 있을 겨웅
#git diff
: .commit된 파일 중 변경된 사항을 고려할 때
'Git' 카테고리의 다른 글
Git Collaborator 추가 (0) | 2020.12.10 |
---|---|
Git 원격 저장소 (0) | 2020.10.31 |
Git 가지치기 (0) | 2020.10.31 |