質問するログイン新規登録

回答編集履歴

2

Add second investigation

2020/07/12 06:48

投稿

y_shinoda
y_shinoda

スコア3272

answer CHANGED
@@ -8,4 +8,17 @@
8
8
  参考:
9
9
  [【Git】中央リポジトリーを用意しよう | ultra code](https://futureys.tokyo/lets-prepare-central-repository/)
10
10
  [Githubを使わずにチームでGitを共有する方法 - Qiita](https://qiita.com/shuntaro_tamura/items/d04fb892c9a6b7e1ab42)
11
- [Git - git-init Documentation](https://git-scm.com/docs/git-init)
11
+ [Git - git-init Documentation](https://git-scm.com/docs/git-init)
12
+
13
+ 3
14
+ リモートリポジトリーとして GitHub を使っているのであれば、
15
+ `origin` として GitHub のリポジトリーを登録していますか?
16
+
17
+ 現在登録しているリモートリポジトリーの一覧を
18
+ 次のコマンドで確認できます:
19
+
20
+ ```console
21
+ git remote -v
22
+ ```
23
+
24
+ 参考: [【 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

answer CHANGED
@@ -6,5 +6,6 @@
6
6
  `/home/root/git/test.git` は bare リポジトリーとして初期化していますか?
7
7
 
8
8
  参考:
9
+ [【Git】中央リポジトリーを用意しよう | ultra code](https://futureys.tokyo/lets-prepare-central-repository/)
9
10
  [Githubを使わずにチームでGitを共有する方法 - Qiita](https://qiita.com/shuntaro_tamura/items/d04fb892c9a6b7e1ab42)
10
11
  [Git - git-init Documentation](https://git-scm.com/docs/git-init)