LoginSignup
0
1

More than 3 years have passed since last update.

Github投稿 Push

Posted at

1. git init 取り消し

$ rm -rf .git

2. Gitリポジトリの作成

$ git init

3. リポジトリへの登録

$ git add .

4. コミット

 $ git commit -m "first commit"

5. リモートリポジトリの登録

 $ git remote add origin <URLアドレス>

5. リモートリポジトリの確認

 $ git remote -v

6. リモートリポジトリに反映

 $ git push origin master
0
1
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
1