Closed1
[Git編]調べたことのメモ
2つのGitリポジトリをマージする
exampleのリポジトリにexample2のリポジトリをマージしたいとき
git clone git@github.com:ssakihara/example.git
cd example
git remote add example2 git@github.com:ssakihara/example2.git
git fetch example2
git merge --allow-unrelated-histories example2/master
git add .
git commit -m "Some reason"
git push -u origin master
このスクラップは2024/03/13にクローズされました