質問編集履歴

1

エラー内容追記

2020/07/21 11:35

投稿

s-lll
s-lll

スコア7

test CHANGED
File without changes
test CHANGED
@@ -5,3 +5,31 @@
5
5
  更に、```git branch```コマンドを実行したのですが、```master```ブランチすら作成されていませんでした。
6
6
 
7
7
  これはどういった現象が発生してしまっているのでしょうか。こちらの問題の解決方法につきまして、どなたかご助言頂けましたら幸いです。
8
+
9
+ ### 追記
10
+
11
+ 「git pull」コマンドを実行した際のエラーは以下のものが出力されました。
12
+
13
+
14
+
15
+ ```
16
+
17
+ There is no tracking information for the current branch.
18
+
19
+ Please specify which branch you want to merge with.
20
+
21
+ See git-pull(1) for details.
22
+
23
+
24
+
25
+ git pull <remote> <branch>
26
+
27
+
28
+
29
+ If you wish to set tracking information for this branch you can do so with:
30
+
31
+
32
+
33
+ git branch --set-upstream-to=<remote>/<branch> master
34
+
35
+ ```