0
0

More than 3 years have passed since last update.

gitgubにリポジトリ作成し、ユーザー共有する方法

Posted at
  • 基本的にはprivate設定にする。

  • コマンドで、リポジトリ作成したいディレクトリに移動する(cd)。

  • 下記コマンドを実行
    git init
    git add *
    git commit -m "first commit"
    git remote add origin git@github.com:自分のユーザー名/リポジトリ名(git上と合わせる)
    git push -u origin master

  • Settings -> Collaboratorsから、共有したいユーザーを追加

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0