0
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 1 year has passed since last update.

超簡単に超絶要約した、新しくアプリを作ってGithubのリモートリポジトリと結び付けるまでの手順

Posted at

はじめに

プログラミング歴4ヶ月突入の新参者です。

遊び程度に自分のHPを作ろうと思い、アプリを作る際にGithubにそのデータを残すためにローカルリポジトリとリモートリポジトリを紐付ける作業があるのですが、未だに教材を見返してその作業をやってしまうので、忘れないためにもここへ書いておこうという次第で書き込みました。

自分のためのメモ書きに近いのですが、もし閲覧する方の参考になれば幸いです。

手早く結論から

手順は

  1. git init
  2. git add .
  3. git commit -m "好きな保存名"
  4. Githubでリモートリポジトリを作成する
  5. git remote add origin リポジトリURL
  6. git branch -M main
  7. git push origin main

灰色の部分は打つべきコマンドです。

基本的にはこの順でローカルリポジトリとリモートリポジトリを紐付ける作業は完了します。

紐づけした後は

  1. git add .
  2. git commit -m "好きな保存名"
  3. git push origin main

この順番にコマンドを打つとリモートリポジトリに変更が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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?