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 プルのマージ型、リベース型

Posted at

プルのマージ型

git pull <リモート名><ブランチ名>
git pull origin master

マージコミットが残るから、マージしたという記録を残したい場合に使おう

プルのリベース型

git pull --rebase
<リモート名><ブランチ名>
git pull --rebase origin master

マージコミットが残らないから、GitHubの内容を取得したいだけの時は--rebaseを使おう

プルをリベース型に設定する

git config --global pull.rebase true

masterブランチでgit pullする時だけ
git config branch.master.rebase true

--rebaseオプションを付けなくてもgit pullの挙動がリベース型になるよ

~/.gitconfig
~/.config/git/config

--globalを付けるとPC全体の設定になるよ

project/.git/config
ローカルリポジトリ
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?