1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

[git]ローカルのディレクトリをリモートに登録する

Posted at

公式の手順踏んでみるだけです。何気にやったことなかったのでメモ書き
https://docs.github.com/ja/github/importing-your-projects-to-github/adding-an-existing-project-to-github-using-the-command-line

以下の ruby_test ディレクトリ配下をgithubに登録してみます

ruby_test
├── README.md
├── sample.rb
├── sample_test.rb
└── test
    └── fizz_buzz_test.rb

1. ローカルディレクトリをGitリポジトリに登録する

$ git init
Initialized empty Git repository in /yourdirectory/ruby_test/.git/

2. ローカルファイルを全てgitに登録する

$ git add .
$ git commit -m "1"

3. github上でリポジトリを作る

キャプチャ.PNG

  • Repository name : リポジトリ名。ローカルのディレクトリ名と同じで良いが自由
  • その他そのまま

4. ローカルディレクトリをリモートに関連付けする

キャプチャ1.PNG

  • このURLをコピーしておく
# リモートに登録する
$ git remote add origin https://github.com/mikenekoko/ruby_test.git

# リモートにpushする。UsernameとPasswordを聞かれるので答える
$ git push -u origin master
Username for 'https://github.com': *********
Password for 'https://*********@github.com':
Counting objects: 8, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (8/8), done.
Writing objects: 100% (8/8), 1.50 KiB | 383.00 KiB/s, done.
Total 8 (delta 0), reused 0 (delta 0)
To https://github.com/mikenekoko/ruby_test.git
 * [new branch]      master -> master
Branch 'master' set up to track remote branch 'master' from 'origin'.

リモートで確認したら、すでにファイルが登録できている

キャプチャ3.PNG

1
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?