回答編集履歴
2
Add notification
test
CHANGED
@@ -60,6 +60,8 @@
|
|
60
60
|
|
61
61
|
`git@bitbucket.org:????/ hello_app.git` の `:` が全角で入力されていることが原因かもしれません
|
62
62
|
|
63
|
+
`/` の後にスペースが空いているのも気になります
|
64
|
+
|
63
65
|
|
64
66
|
|
65
67
|
## 手順が失敗していることを確認する方法
|
1
Fix mistake
test
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
次の箇所の手順が
|
1
|
+
次の箇所の手順が失敗しています
|
2
2
|
|
3
3
|
|
4
4
|
|
@@ -18,6 +18,36 @@
|
|
18
18
|
|
19
19
|
|
20
20
|
|
21
|
+
```console
|
22
|
+
|
23
|
+
???:~/environment/hello_app (master) $ git remote add origin git@bitbucket.org:????/ hello_app.git
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
usage: git remote add [<options>] <name> <url>
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
-f, --fetch fetch the remote branches
|
32
|
+
|
33
|
+
--tags import all tags and associated objects when fetching
|
34
|
+
|
35
|
+
or do not fetch any tag at all (--no-tags)
|
36
|
+
|
37
|
+
-t, --track <branch> branch(es) to track
|
38
|
+
|
39
|
+
-m, --master <branch>
|
40
|
+
|
41
|
+
master branch
|
42
|
+
|
43
|
+
--mirror[=<push|fetch>]
|
44
|
+
|
45
|
+
set up remote as a mirror to push to or fetch from
|
46
|
+
|
47
|
+
```
|
48
|
+
|
49
|
+
|
50
|
+
|
21
51
|
この操作は
|
22
52
|
|
23
53
|
ローカルの Git リポジトリーに、プッシュ先のリモートリポジトリーを `origin` という名前で登録する操作です
|
@@ -28,7 +58,11 @@
|
|
28
58
|
|
29
59
|
|
30
60
|
|
61
|
+
`git@bitbucket.org:????/ hello_app.git` の `:` が全角で入力されていることが原因かもしれません
|
62
|
+
|
63
|
+
|
64
|
+
|
31
|
-
## 手順が
|
65
|
+
## 手順が失敗していることを確認する方法
|
32
66
|
|
33
67
|
|
34
68
|
|
@@ -46,4 +80,6 @@
|
|
46
80
|
|
47
81
|
|
48
82
|
|
83
|
+
このコマンドは登録済みのリモートリポジトリーを表示します
|
84
|
+
|
49
|
-
ここで、先ほどの手順が
|
85
|
+
ここで、先ほどの手順が失敗していると、`origin` が表示されません
|