LoginSignup
20
18

More than 1 year has passed since last update.

【Git】他人のからgit cloneして自分のにgit pushする

Last updated at Posted at 2019-06-10

やりたいこと

他人のgitリポジトリをクローンして
自分で編集したものを自分のリモートリポジトリにプッシュしたい

他人のリポジトリをクローン

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

編集してコミット

自分のローカル環境で編集

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

自分のリモートリポジトリへプッシュ

$ git remote -v
$ git push [プッシュ先のURL] [ブランチ名]
20
18
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
20
18