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 3 years have passed since last update.

git initからリモートへpushの手順(VSCode)

Posted at

はじめに

もうさまざまな場所で書かれた内容かと思いますが、自分がよく忘れるので備忘録として。
間違っている点もあると思うのでご指摘ただければ幸いです。

手順

  1. リモート:まずgithub等でpush先となるリポジトリ作成

  2. ローカル:gitで管理したいディレクトリでgit init

  3. ローカル:リモートリポジトリを登録

    git remote add origin [git@github.com](mailto:git@github.com):user/repo.git

    VSCodeでは以下でも可能

    Remoteからadd Remoteを選択

    GitHubからレポジトリを選択

    remote nameを登録 (多分なんでもいいけど originが無難、以下はoriginで進める)

  4. git push origin main

    ブランチ全体をpushするなら以下

    git push -u origin --all

    VSCodeなら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?