1
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-12-16

Git講座

  • Gitコマンド一覧
  • 使い方
  • まとめ

Gitコマンド一覧

  • ステージング : git add .
  • コミット   : git commit -m "コメント"
  • プッシュ   : git push origin ブランチ名
  • ブランチ一覧 : git branch
  • ブランチ移動 : git checkout ブランチ名
  • ブランチ削除 : git branch -d ブランチ名
  • クローン   : git clone "url"
  • プル     : git pull origin ブランチ名

使い方

clone(クローン)する方法

Step1 作りたい場所に移動する
Step2 git clone "url"

新しいブランチを切る

Step1 git checkout 中央のブランチ名

中央ブランチに移動する

Step2 git pull origin リモートの中央ブランチ名

最新の状態をリモートから取得する

Step3 git checkout -b 新しいブランチ名

新しいブランチに移動する


作業中に保存

Step1 git add.

変更されたファイルをステージングする

Step2 git commit -m "コメント"

ステージングしたファイルをコミットする


新しいブランチを切る

Step1 git checkout 中央のブランチ名

中央ブランチに移動する

Step2 git pull origin リモートの中央ブランチ名

最新の状態をリモートから取得する

Step3 git checkout -b 新しいブランチ名

新しいブランチに移動する


作業中に最新を取り込む

Step1 git add.

変更されたファイルをステージングする

Step2 git commit -m "コメント"

ステージングしたファイルをコミットする

Step3 git checkout 中央ブランチ名

中央ブランチに移動する

Step4 git pull origin リモートの中央ブランチ名

最新の状態をリモートから取得する

Step5 git checkout 作業ブランチ名

作業ブランチに戻る

Step6 git merge 中央ブランチ名

最新を作業ブランチに取り込む


作業中に最新を取り込む

Step1 git add.

変更されたファイルをステージングする

Step2 git commit -m "コメント"

ステージングしたファイルをコミットする

Step3 git push 作業ブランチ

コミットした内容をプッシュする


プルリクエストする

image.png

  • 左上の部分で、マージ先を選択
  • 右の上側で、assign(担当者)を選択
  • 右の下側で、label(編集部分)を選択

まとめ

今回は、初心者に向けてGitのコマンドや使い方をまとめました。
ハッカソンに向けたGitの使い方のため、細かい使い方は省きました。
応用編ではチーム開発でのGitの使い方やブランチ構造などをまとめたので、チーム開発のリーダーなどをする際は参考にしてみてください

1
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
1
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?