LoginSignup
0
0

More than 3 years have passed since last update.

GitHubからダウンロード→再アップロード 勉強用

Posted at

※修正したものだけをアップロードする方法。

github上のリモートリポジトリーにある
「Clone or download」ボタンを押してURLをコピーする。


ローカルにダウンロード

githubのリモートリポジトリーURL

$ git clone [URL]

変更したファイルを追加

$ git add .

変更したファイル名をインデックスに反映

$ git add ****.html[変更したファイル名]

変更箇所をコミット

$ git commit -m "変更箇所"

リモートリポジトリに変更を反映

$ git push

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