0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Gitをコマンドをメモする

Last updated at Posted at 2024-10-23

概要

勉強のためにGitをインストールしたけど
使ってないとすぐコマンドを忘れそうなのでメモすることにした。

ユーザ名・メールアドレスの設定

Gitをインストールした後にすぐユーザ名・メールアドレスを設定。

ユーザ名の設定

git config --global user.name <ユーザ名>

ユーザ名の確認

git config --global user.name

メールアドレスの設定

git config --global user.email <メールアドレス>

メールアドレスの確認

git config --global user.email

リポジトリの初期化

下記のコマンドを実行することにより
リポジトリの初期化を行い、隠しディレクトリで「.git」が作成される。

git init

ステータスの確認
下記のコマンドでファイルの変更状況やステージングエリアの状態を確認できる。

git status

ワーキングツリーからインデックス(ステージ・エリア)に追加

Gitは変更したソースをコミットする前
ワーキングツリーからインデックスに追加する必要がある。
その時に使用するコマンドが「git add」になる。
「単品ファイル」「複数ファイル」「ディレクトリ全体」等それぞれコマンドで指定できる。

単品ファイル

git add <ファイル名>

複数ファイル

git add <1ファイル名> <2ファイル名>

ディレクトリ全体

git add .

コミット

コミットする場合は下記のコマンドを実行する。
「-m」オプションを指定してコメントを記載できる。
コミットした際はハッシュ値(コミットID)が付与される。

git commit -m <コメント>

コミットの履歴を確認したい場合は下記のコマンドを実行

git log

ブランチ操作

ブランチの作成

git checkout -b <作成するブランチ名>

ブランチの切り替え

git checkout <切り替えるブランチ名>

ブランチのマージ

git merge <マージ元のブランチ名> 
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?