ローカルファイルをGitHubにアップロードする
$ cd hoge_app
hoge_app $ git init
$ git add .
$ git commit -m "first_commit"create_JS
場合によっては以下のように、emailとusernameを登録しろと言われる。
edb5569] first_commit
Committer: ユーザーネーム <[email protected]>
Your name and email address were configured automatically based
on your username and hostname. Please check that they are accurate.
You can suppress this message by setting them explicitly:
git config --global user.name "Your Name"
git config --global user.email [email protected]
After doing this, you may fix the identity used for this commit with:
git commit --amend --reset-author
emailとユーザーネームを登録する
$ git config --global user.email “[email protected]”
$ git config --global user.name “hogehoge_fuga”
リモートブランチとローカルブランチをつなげる
$ git remote add origin [email protected]:<ユーザー名>/<アプリ名>.git
commitした内容をpushする
$ git push origin master
Author And Source
この問題について(ローカルファイルをGitHubにアップロードする), 我々は、より多くの情報をここで見つけました https://zenn.dev/elephant_tusk/articles/cd2c46f4a5c83c著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Collection and Share based on the CC protocol