5
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.

[GitHub初心者] 他人のGithubをcloneして、自分のレポジトリにpushする

Last updated at Posted at 2020-08-03

他の方がGithubに公開されているプロジェクトを、自分のローカルPCにプロジェクト毎DL?して、自分のGithubアカウントにpushするやり方です。

参考記事
【git】他人のからclone して自分のにpushする
CloneしてからローカルPCで開発&変更を加える

##まずローカルPCにプロジェクトをclone(ダウンロードするイメージ)

$ git clone [クローン元のリポジトリURL]

##ローカルで開発する

$bundle install #まずはgemをインストール

$ rails db:create #DBを作成
$ rails db:migrate

$ rails s #サーバー起動

##自分のGithubアカウントにpushする

$ git add .
$ git commit -m "my-first-clone"
$ git remote add origin <push先のURL>
$ git push origin master
5
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
5
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?