Git CLI 사용법(add, commit, push, status, log)개발/Git Github2024. 10. 21. 17:38
Table of Contents
1. 명령어를 모를 때
# CLI 어디서든 명령어를 모를땐 help를 사용
$ help
$ git help
$ git commit help
$ git commit -help
2. Github에 업로드 하기
- M(Changes not staged for commit) : 파일이 변경되었으며 아직 스테이지에 올라가지 않음
- U(Untracked files) : git이 파일을 관찰하지 않고 있으며 아직 git에 등록되지 않음
# 파일을 스테이지 영역에 올리기
# 파일 전체를 올릴려면 파일명에 .
$ git add 파일명
# 스테이지 영역의 상태 확인
$ git status
# Git에 저장하기
# 모든 Commit에는 메세지가 필요
$ git commit -m "내용"
# Commit 이력 확인
$ git log
HEAD -> main : Local directory(본인의 컴퓨터)에 올라간 commit
origin/main : Remote repository(Github)에 올라간 commit
Git으로 작업할 때는 항상 log를 보고 origin과 commit을 확인
# Github에 Push
$ git push origin main
Enumerating objects: 5, done.
Counting objects: 100% (5/5), done.
Delta compression using up to 12 threads
Compressing objects: 100% (3/3), done.
Writing objects: 100% (3/3), 326 bytes | 326.00 KiB/s, done.
Total 3 (delta 2), reused 0 (delta 0), pack-reused 0 (from 0)
remote: Resolving deltas: 100% (2/2), completed with 2 local objects.
To https://github.com/계정명/git-for-everyone.git
647f15a..7fad03e main -> main
'개발 > Git Github' 카테고리의 다른 글
Git과 Github (0) | 2024.10.21 |
---|