LoginSignup
0
0

More than 3 years have passed since last update.

【GitHub】upstream masterを自分のブランチに取り込む方法

Posted at

●<GitHub upstream masterを取り込む方法>

http://kik.xii.jp/archives/179
remote:upstream
remote: master、origin
local: master、origin

①upstreamのmaster → localのmaster
②localのmaster → remoteのoriginにpush
③remoteのmaster → localのブランチ

git checkout master
git pull upstream master ①
git push origin master ②
git checkout ブランチ名
git pull origin master ③
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