質問編集履歴
1
git push -f を行った場合
test
CHANGED
File without changes
|
test
CHANGED
@@ -42,6 +42,22 @@
|
|
42
42
|
|
43
43
|
git rebase
|
44
44
|
|
45
|
+
git push -fを行った場合
|
46
|
+
|
47
|
+
```
|
48
|
+
|
49
|
+
fatal: The current branch (ブランチ名) has no upstream branch.
|
50
|
+
|
51
|
+
To push the current branch and set the remote as upstream, use
|
52
|
+
|
53
|
+
|
54
|
+
|
55
|
+
git push --set-upstream origin (ブランチ名)
|
56
|
+
|
57
|
+
```
|
58
|
+
|
59
|
+
このように表示されます。
|
60
|
+
|
45
61
|
|
46
62
|
|
47
63
|
|