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?

GitHubでソースをpushする方法

Posted at

概要

GitHubでソースをpushする方法をメモとして残す。

リポジトリの初期化

pushするソース配下のディレクトリに移動して
下記のコマンドを実行してリポジトリを作成する

git init

ワーキングツリーからインデックスに追加

ワーキングツリーからインデックスにソースを追加する

git add .

コミット

下記のコマンドでコミットを実行する

git commit -m <コメント>

リモートリポジトリの紐づけ

下記のコマンドで紐づけを行う。
リモートリポジトリ名は「origin」
リモートリポジトリURLは「GitHub」から取得する

git remote add <リモートリポジトリ名><リモートリポジトリURL>

リモートリポジトリのアップロード

git push -u origin main
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?