回答編集履歴

2

Add second investigation

2020/07/12 06:48

投稿

y_shinoda
y_shinoda

スコア3272

test CHANGED
@@ -19,3 +19,29 @@
19
19
  [Githubを使わずにチームでGitを共有する方法 - Qiita](https://qiita.com/shuntaro_tamura/items/d04fb892c9a6b7e1ab42)
20
20
 
21
21
  [Git - git-init Documentation](https://git-scm.com/docs/git-init)
22
+
23
+
24
+
25
+ 3
26
+
27
+ リモートリポジトリーとして GitHub を使っているのであれば、
28
+
29
+ `origin` として GitHub のリポジトリーを登録していますか?
30
+
31
+
32
+
33
+ 現在登録しているリモートリポジトリーの一覧を
34
+
35
+ 次のコマンドで確認できます:
36
+
37
+
38
+
39
+ ```console
40
+
41
+ git remote -v
42
+
43
+ ```
44
+
45
+
46
+
47
+ 参考: [【 git remote 】コマンド(基礎編)――リモートリポジトリを追加、削除する:Linux基本コマンドTips(395) - @IT](https://www.atmarkit.co.jp/ait/articles/2005/08/news017.html)

1

Add cf

2020/07/12 06:48

投稿

y_shinoda
y_shinoda

スコア3272

test CHANGED
@@ -14,6 +14,8 @@
14
14
 
15
15
  参考:
16
16
 
17
+ [【Git】中央リポジトリーを用意しよう | ultra code](https://futureys.tokyo/lets-prepare-central-repository/)
18
+
17
19
  [Githubを使わずにチームでGitを共有する方法 - Qiita](https://qiita.com/shuntaro_tamura/items/d04fb892c9a6b7e1ab42)
18
20
 
19
21
  [Git - git-init Documentation](https://git-scm.com/docs/git-init)