質問編集履歴
3
発生している問題を修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -88,7 +88,7 @@
|
|
88
88
|
|
89
89
|
vscodeでは変更追加したファイルは、いい具合に差分が表示できています。
|
90
90
|
|
91
|
-
ただ”ある特定のディレクトリ”が
|
91
|
+
ただ”ある特定のディレクトリ”がローカルに存在しないことになってしまっています。
|
92
92
|
|
93
93
|
|
94
94
|
|
2
発生している問題に加筆
test
CHANGED
File without changes
|
test
CHANGED
@@ -84,6 +84,14 @@
|
|
84
84
|
|
85
85
|
|
86
86
|
|
87
|
+
この段階で
|
88
|
+
|
89
|
+
vscodeでは変更追加したファイルは、いい具合に差分が表示できています。
|
90
|
+
|
91
|
+
ただ”ある特定のディレクトリ”がリポジトリに存在しないことになってしまっています。
|
92
|
+
|
93
|
+
|
94
|
+
|
87
95
|
### 補足情報(FW/ツールのバージョンなど)
|
88
96
|
|
89
97
|
|
1
発生している問題に加筆
test
CHANGED
File without changes
|
test
CHANGED
@@ -38,6 +38,52 @@
|
|
38
38
|
|
39
39
|
|
40
40
|
|
41
|
+
git config core.filemode false
|
42
|
+
|
43
|
+
を行った後
|
44
|
+
|
45
|
+
|
46
|
+
|
47
|
+
git status
|
48
|
+
|
49
|
+
の結果は(微妙に異なるがおおむね)同じ
|
50
|
+
|
51
|
+
|
52
|
+
|
53
|
+
git pull
|
54
|
+
|
55
|
+
を行うと
|
56
|
+
|
57
|
+
linuxは
|
58
|
+
|
59
|
+
```
|
60
|
+
|
61
|
+
Already up to date.
|
62
|
+
|
63
|
+
```
|
64
|
+
|
65
|
+
windowsはエラー
|
66
|
+
|
67
|
+
```
|
68
|
+
|
69
|
+
CreateProcessW failed error:193
|
70
|
+
|
71
|
+
ssh_askpass: posix_spawn: Unknown error
|
72
|
+
|
73
|
+
Host key verification failed.
|
74
|
+
|
75
|
+
fatal: Could not read from remote repository.
|
76
|
+
|
77
|
+
|
78
|
+
|
79
|
+
Please make sure you have the correct access rights
|
80
|
+
|
81
|
+
and the repository exists.
|
82
|
+
|
83
|
+
```
|
84
|
+
|
85
|
+
|
86
|
+
|
41
87
|
### 補足情報(FW/ツールのバージョンなど)
|
42
88
|
|
43
89
|
|