Your name and email address were configured automatically based

Your name and email address were configured automatically based on your username and hostname. Please check that they are accurate.

1 문제상황[ | ]

root@zetawiki:~/workspace/hello# echo 'hello world' > greet.txt
root@zetawiki:~/workspace/hello# git add greet.txt 
root@zetawiki:~/workspace/hello# git commit -m 'hello world!'
[master (root-commit) f4af7c0] hello world!
 Committer: root <root@zetawiki.example.com>
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 you@example.com

After doing this, you may fix the identity used for this commit with:

    git commit --amend --reset-author

 1 file changed, 1 insertion(+)
 create mode 100644 greet.txt
→ git 사용자의 이름과 이메일이 설정되지 않음

2 이름, 이메일 설정[ | ]

root@zetawiki:~/workspace/hello# git config --global user.name "gituser1"
root@zetawiki:~/workspace/hello# git config --global user.email gituser1@zetawiki.com
root@zetawiki:~/workspace/hello# cat ~/.gitconfig
[user]
	name = gituser1
	email = gituser1@zetawiki.com

3 확인[ | ]

root@zetawiki:~/workspace/hello# echo 'good morning' >> greet.txt
root@zetawiki:~/workspace/hello# git add greet.txt
root@zetawiki:~/workspace/hello# git commit -m 'good morning!'
[master 7eca13f] good morning!
 1 file changed, 1 insertion(+)

4 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}