*** Please tell me who you are.
Run
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
to set your account's default identity.
Omit --global to set the identity only in this repository.
fatal: unable to auto-detect email address (got '<PC NAME>.(none)')
> git status
On branch master
No commits yet
Untracked files:
(use "git add <file>..." to include in what will be committed)
readme.md
nothing added to commit but untracked files present (use "git add" to track)
git statusでaddされてないことを確認
ファイルを`add`する.
> git add readme.md
> git status
On branch master
No commits yet
Changes to be committed:
(use "git rm --cached <file>..." to unstage)
new file: readme.md
git add とstatusでcommitされていないことを確認
このまま`commit`する.
> git commit -m "add readme.md"
[master (root-commit) 124e0b9] add readme.md
1 file changed, 1 insertion(+)
create mode 100644 readme.md
> git status
On branch master
nothing to commit, working tree clean