質問編集履歴
3
試したことを追記しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -95,3 +95,47 @@
|
|
95
95
|
Please make sure you have the correct access rights
|
96
96
|
|
97
97
|
and the repository exists
|
98
|
+
|
99
|
+
|
100
|
+
|
101
|
+
●質問への追記・修正の依頼への回答
|
102
|
+
|
103
|
+
① git remove -v で、現在の設定を確認してみたら、どうなっているでしょうか?
|
104
|
+
|
105
|
+
|
106
|
+
|
107
|
+
git remove -vを入力したところ
|
108
|
+
|
109
|
+
|
110
|
+
|
111
|
+
git: 'remove' is not a git command. See 'git --help'.
|
112
|
+
|
113
|
+
|
114
|
+
|
115
|
+
The most similar command is
|
116
|
+
|
117
|
+
remote
|
118
|
+
|
119
|
+
|
120
|
+
|
121
|
+
と出力されたのでremoteで再試行しました
|
122
|
+
|
123
|
+
git remote -v
|
124
|
+
|
125
|
+
結果
|
126
|
+
|
127
|
+
origin https://myname@bitbucket.org/myname/myname.git (fetch)
|
128
|
+
|
129
|
+
origin https://myname@bitbucket.org/myname/myname.git (push)
|
130
|
+
|
131
|
+
と出力されました
|
132
|
+
|
133
|
+
|
134
|
+
|
135
|
+
② また、質問では https://myname@bitbucket.org と、https:// ではなくスペースが入ってしまっているのですが、これは記載間違いでしょうか。
|
136
|
+
|
137
|
+
|
138
|
+
|
139
|
+
スペースを消したらうまくいきました。
|
140
|
+
|
141
|
+
ありがとうございます!!!!!
|
2
試したことを追記しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -73,3 +73,25 @@
|
|
73
73
|
|
74
74
|
|
75
75
|
●問題の発生した環境
|
76
|
+
|
77
|
+
|
78
|
+
|
79
|
+
●追加で試したこと
|
80
|
+
|
81
|
+
https://teratail.com/questions/49935?link=qa_related_pc
|
82
|
+
|
83
|
+
上記のurlに書いてあった
|
84
|
+
|
85
|
+
git remote rm origin として一旦 origin を消してから再び git remote add で remote を登録し、pushしてみましたが駄目でした
|
86
|
+
|
87
|
+
その際のエラーコード
|
88
|
+
|
89
|
+
fatal: 'https://myname@bitbucket.org/myname/myname.git' does not appear to be a git repository
|
90
|
+
|
91
|
+
fatal: Could not read from remote repository.
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
Please make sure you have the correct access rights
|
96
|
+
|
97
|
+
and the repository exists
|
1
解決したいことを詳しくしました
test
CHANGED
File without changes
|
test
CHANGED
@@ -8,6 +8,26 @@
|
|
8
8
|
|
9
9
|
sorcetree インストール済み
|
10
10
|
|
11
|
+
ssh-key 作成確認後bitbucketの設定欄において設定済
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
●試したこと
|
16
|
+
|
17
|
+
git remote add origin https://myname@bitbucket.org/myname/myname.git
|
18
|
+
|
19
|
+
とStart Command Pronpt with Rubyで入力
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
fatal: remote origin already exists.
|
24
|
+
|
25
|
+
と出力される
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
|
30
|
+
|
11
31
|
|
12
32
|
|
13
33
|
●解決したいこと
|
@@ -16,4 +36,40 @@
|
|
16
36
|
|
17
37
|
|
18
38
|
|
39
|
+
●発生している問題、エラーメッセージ
|
40
|
+
|
41
|
+
git push -u origin masterを入力
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
no such identity: /Users/myname/.ssh/bitbucket/id_rsa: No such file or directory
|
46
|
+
|
47
|
+
git@bitbucket.org: Permission denied (publickey).
|
48
|
+
|
49
|
+
fatal: Could not read from remote repository.
|
50
|
+
|
51
|
+
|
52
|
+
|
53
|
+
Please make sure you have the correct access rights
|
54
|
+
|
55
|
+
and the repository exists.
|
56
|
+
|
57
|
+
|
58
|
+
|
19
|
-
|
59
|
+
と出力
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
|
64
|
+
|
65
|
+
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
●ソースコード
|
72
|
+
|
73
|
+
|
74
|
+
|
75
|
+
●問題の発生した環境
|