유용한 Git 명령: 종합 안내서

다음은 예시와 함께 유용한 Git 명령의 자세한 목록입니다.

git init

프로젝트 디렉토리에서 새 Git 리포지토리를 초기화합니다.

예:

$ git init  
Initialized empty Git repository in /path/to/your/project/.git/  

git clone [url]

서버에서 로컬 시스템으로 원격 리포지토리를 복제합니다.

예:

$ git clone https://github.com/yourusername/your-repo.git  
Cloning into 'your-repo'...  

git add [file]

준비 영역에 하나 이상의 파일을 추가하여 commit.

예:

$ git add index.html  
$ git add *.css  

git commit -m "message"

commit 준비 영역에 추가된 변경 사항으로 새로 만들고 commit 메시지를 포함합니다.

예:

$ git commit -m "Fix a bug in login process"  
[main 83a9b47] Fix a bug in login process  
1 file changed, 5 insertions(+), 2 deletions(-)  

git status

수정된 파일 및 준비 영역을 포함하여 저장소의 현재 상태를 봅니다.

예:

$ git status  
On branch main  
Changes not staged for commit:  
 (use "git add <file>..." to update what will be committed)  
 (use "git restore <file>..." to discard changes in working directory)  
        modified:   index.html  
  
no changes added to commit(use "git add" and/or "git commit -a")

git log

commit 저장소의 히스토리를 표시합니다 .

예:

$ git log
commit 83a9b4713f9b6252bfc0367c8b1ed3a8e9c75428(HEAD -> main)  
Author: Your Name <[email protected]>  
Date:   Mon Jul 13 12:34:56 2023 +0200  
  
    Fix a bug in login process  
  
commit 47f1c32798b7e862c4c69718abf6498255f1a3d2  
Author: Your Name <[email protected]>  
Date:   Sun Jul 12 18:42:15 2023 +0200  
  
    Add new homepage  

git branch

저장소의 모든 분기를 나열하고 현재 분기를 표시합니다.

예:

$ git branch  
* main  
  feature/add-new-feature  
  feature/fix-bug  

git checkout [branch]

저장소의 다른 분기로 전환합니다.

예:

$ git checkout feature/fix-bug  
Switched to branch 'feature/fix-bug'  

git merge [branch]

다른 분기를 현재 분기에 병합합니다.

예:

$ git merge feature/add-new-feature  
Updating 83a9b47..65c6017  
Fast-forward  
 new-feature.html| 10 ++++++++++  
 1 file changed, 10 insertions(+)  
 create mode 100644 new-feature.html  

git pull

원격 저장소에서 현재 브랜치로 변경 사항을 가져와 통합합니다.

예:

$ git pull origin main  
From https://github.com/yourusername/your-repo  
* branch            main       -> FETCH_HEAD  
Already up to date.  

git push

현재 분기에서 원격 저장소로 변경 사항을 푸시합니다.

예:

$ git push origin main

git remote add [name] [url]

원격 리포지토리 목록에 새 원격 서버를 추가합니다.

예:

$ git remote add upstream https://github.com/upstream-repo/repo.git

git fetch

원격 리포지토리에서 변경 사항을 다운로드하지만 현재 분기에 통합하지 마십시오.

예:

$ git fetch origin

git diff

스테이징 영역과 추적된 파일 간의 변경 사항을 비교합니다.

예:

$ git diff

git reset [file]

준비 영역에서 파일을 제거하고 이전 상태로 되돌립니다.

예:

$ git reset index.html

git stash

커밋되지 않은 변경 사항을 커밋하지 않고 다른 브랜치에서 작동하도록 임시로 저장합니다.

예:

$ git stash
Saved working directory and index state WIP on feature/branch: abcd123 Commit message

git remote -v

원격 서버와 해당 URL 주소를 나열합니다.

예:

$ git remote -v  
origin  https://github.com/yourusername/your-repo.git(fetch)  
origin  https://github.com/yourusername/your-repo.git(push)  
upstream        https://github.com/upstream-repo/repo.git(fetch)  
upstream        https://github.com/upstream-repo/repo.git(push)