便利な 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]

1 つ以上のファイルをステージング領域に追加して 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)