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

初心者が最初の方に覚えた、使うコマンドをまとめました。

リポジトリの作成・初期化

  1. git init

    • 新しいGitリポジトリを作成する。
    • 例: git init
  2. git clone [URL]

    • リモートリポジトリをローカルにクローンする。
    • 例: git clone https://github.com/example/repo.git

状態確認

  1. git status

    • 現在のリポジトリの状態を確認する。
    • 例: git status
  2. git log

    • コミット履歴を表示する。
    • 例: git log

ファイルの追跡・管理

  1. git add [ファイル名]

    • ファイルをステージングエリアに追加する。
    • 例: git add README.md
  2. git add .

    • カレントディレクトリ以下の全ファイルをステージングエリアに追加する。
    • 例: git add .
  3. git reset [ファイル名]

    • ステージングエリアからファイルを取り除く。
    • 例: git reset README.md

コミット

  1. git commit -m "[メッセージ]"
    • ステージングエリアの変更をコミットする。
    • 例: git commit -m "Initial commit"

ブランチ管理

  1. git branch

    • 現在のブランチ一覧を表示する。
    • 例: git branch
  2. git branch [ブランチ名]

    • 新しいブランチを作成する。
    • 例: git branch feature/add-login
  3. git checkout -b [ブランチ名]

    • 新しいブランチを作成して切り替える。
    • 例: git checkout -b feature/add-login

リモートリポジトリ

  1. git push origin [ブランチ名]

    • ローカルの変更をリモートに反映する。
    • 例: git push origin main
  2. git pull

    • リモートリポジトリの変更を取得して統合する。
    • 例: git pull
2
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
2
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?