質問編集履歴
1
試したコマンドの追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -19,3 +19,45 @@
|
|
19
19
|
何が原因でしょうか?
|
20
20
|
|
21
21
|
ご指摘頂けますと幸いです。
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
試したコード(コマンド in Git bash):
|
26
|
+
|
27
|
+
----①----
|
28
|
+
|
29
|
+
Branch: Master
|
30
|
+
|
31
|
+
1) git add .
|
32
|
+
|
33
|
+
2) git commit -a -m "Comments"
|
34
|
+
|
35
|
+
3) git push origin master
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
----②----
|
40
|
+
|
41
|
+
1) git branch test
|
42
|
+
|
43
|
+
2) git checkout test
|
44
|
+
|
45
|
+
Branch: Master
|
46
|
+
|
47
|
+
3) git add .
|
48
|
+
|
49
|
+
4) git commit -a -m "Comments"
|
50
|
+
|
51
|
+
5) git push origin test
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
----③----
|
56
|
+
|
57
|
+
1) git checkout master
|
58
|
+
|
59
|
+
2) git add .
|
60
|
+
|
61
|
+
3) git commit -a -m "Comments"
|
62
|
+
|
63
|
+
4) git push origin master
|