3
2

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とGitHubの基本操作から初プッシュまで

Last updated at Posted at 2025-01-09

GitとGitHubの基本操作を学んで初プッシュまでを終えたので、記事としてまとめました。


1. リモートリポジトリの作成とローカルとの連携

  • リモートリポジトリの作成

    • GitHubで新しいリポジトリを作成
  • ローカルとGitHubの連携

    • GitHubのリポジトリとローカル環境を連携
    • git remote add origin <URL> でリモートリポジトリを登録

2. Pushまでの手順

(1) ローカルでの準備
  1. プロジェクトフォルダをローカルで用意
  2. 必要なファイルを作成して内容を追加
(2) ファイルをリモートにアップロード
  1. git add . でファイルをステージング
  2. git commit -m "初回コミット" で変更を記録
  3. git remote add origin <リポジトリURL> でリモートリポジトリを登録
  4. git push -u origin main で変更をリモートにアップロード
  • 使用したコマンド
    git add .
    git commit -m "初回コミット"
    git remote add origin <リポジトリURL>
    git push -u origin main
    

3. ブランチ運用の流れ

  • 新しいブランチを作成

    • git branch <branch_name> で作業用ブランチを作成
    • git checkout <branch_name> またはgit switch <branch_name> でブランチを切り替え
  • 変更のコミットとプッシュ

    • git add . でステージングし、git commit -m "変更内容" でコミット
    • git push origin <branch_name> でリモートブランチにプッシュ

4. プルリクエストの作成とマージ

変更内容を確認し、リモートリポジトリでマージする

  • プルリクエストの作成:

    • GitHub上でmainと作業用ブランチを比較し、変更を確認
  • マージ後の処理:

    • マージ完了後にブランチを削除してローカルを整理

参考教材:
https://www.youtube.com/watch?v=V7WAxif7yT4

3
2
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
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?