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?

More than 1 year has passed since last update.

git rebase

Posted at

git rebase

Gitのコマンド
ブランチのヒストリーを再構築するために使用

別のブランチの変更を現在のブランチに適用
コミットの順序を変更したりする

git rebaseコマンドの使い方

-リポジトリ内でgit rebaseコマンドを実行

  • リベースしたいブランチを指定
    Ex)
    git rebase masterと入力
    →現在のブランチを「master」ブランチにリベース

リベース操作中にコンフリクトが発生した場合

→ファイルを編集してコンフリクトを解決し、git addで変更をステージングエリアに追加する

  • git rebase --continueコマンドを実行
    →リベースを再開

リベースが完了すると
新しいコミットが作成されて、ブランチのヒストリーが再構築されます。

詳細情報の確認方法

  • git rebase --help を使用

詳細な情報とオプションを確認できる

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?