エンジニアとしての市場価値を測りませんか?PR

企業からあなたに合ったオリジナルのスカウトを受け取って、市場価値を測りましょう

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初回アップロード方法

Last updated at Posted at 2023-05-07

備忘録

GitHubにアップロードする一連の流れ(新規アップロード)

※github側のリポジトリ作成は割愛

ローカルリポジトリを作成

git init

アップロード対象のファイルを追加

git add <パス/ファイル名>
# ex) git add .

「git add .」で、対象フォルダに入っている全てのファイルやフォルダを、アップロードの対象にできる。

コミットメッセージ入力

git commit -m “コミット名”
# ex) git commit -m “first commit”

リモートとの紐付けをする(GItHubとの連携)

git remote add origin url名

URLはurl名の部分には、新規リポジトリを作成したときの画面にある、urlをコピペ(HTTPS)

GitHubへアップロード

git push origin main

その他よく使うコマンド

アップロードしたいフォルダへ移動

cd ディレクトリ名

終わりに

二回目(ファイルを変更時)のアップロード方法とチーム開発時のアップロード方法は別途記載予定。

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?