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するだけの記事です。

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

gitにpushしたいファイルに移動してターミナルで次のようにコマンドを入力する。

echo "# Readme" >> README.md
git init
git add .
git commit -m "first commit"
git remote add origin https://github.com/url.git
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?