回答編集履歴
4
miss
test
CHANGED
@@ -36,6 +36,6 @@
|
|
36
36
|
|
37
37
|
# ローカルレポジトリ1のuser_aブランチをマージ
|
38
38
|
|
39
|
-
git merge local
|
39
|
+
git merge local1/user_a
|
40
40
|
|
41
41
|
```
|
3
miss
test
CHANGED
@@ -7,12 +7,6 @@
|
|
7
7
|
```git
|
8
8
|
|
9
9
|
# ローカルレポジトリ2のパスで以下を実行
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
# 現在ブランチをuser_bに変更
|
14
|
-
|
15
|
-
git checkout user_b
|
16
10
|
|
17
11
|
|
18
12
|
|
@@ -34,6 +28,12 @@
|
|
34
28
|
|
35
29
|
|
36
30
|
|
31
|
+
# 現在ブランチをuser_bに変更
|
32
|
+
|
33
|
+
git checkout user_b
|
34
|
+
|
35
|
+
|
36
|
+
|
37
37
|
# ローカルレポジトリ1のuser_aブランチをマージ
|
38
38
|
|
39
39
|
git merge local2/user_a
|
2
miss
test
CHANGED
@@ -16,9 +16,9 @@
|
|
16
16
|
|
17
17
|
|
18
18
|
|
19
|
-
# リモートレポジトリとして、ローカルレポジトリ
|
19
|
+
# リモートレポジトリとして、ローカルレポジトリ1を登録
|
20
20
|
|
21
|
-
git remote add local1 《ローカルレポジトリ
|
21
|
+
git remote add local1 《ローカルレポジトリ1のパス》
|
22
22
|
|
23
23
|
|
24
24
|
|
1
miss
test
CHANGED
@@ -18,7 +18,7 @@
|
|
18
18
|
|
19
19
|
# リモートレポジトリとして、ローカルレポジトリ2を登録
|
20
20
|
|
21
|
-
git remote add local1 《ローカルレポジトリ
|
21
|
+
git remote add local1 《ローカルレポジトリ2のパス》
|
22
22
|
|
23
23
|
|
24
24
|
|