Post List

2016년 10월 21일 금요일

git fatal: unable to auto-detect email address

git 을 처음 설치하고 git commit 시 fatal 에러가 났다...

1
2
3
4
5
6
7
8
9
[binrang@binrang br-electrode-app]$ git commit -m 'first commit'
*** 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 'binrang@binrang.(none)')
[binrang@binrang br-electrode-app]$ 

뭐 특별한 에러는 아니고 니 정보를 알려달란다.. 친절하게 뭘 해야 될지도 알려주네..ㅎㅎ



따라 하자..

1
2
3
[binrang@binrang br-electrode-app]$ git config --global user.email binrang****@****.com
[binrang@binrang br-electrode-app]$ git config --global user.name binrang
[binrang@binrang br-electrode-app]$

이제 다시 commit 을 해보자..

[binrang@binrang br-electrode-app]$ git commit -m 'first commit'
[master (root-commit) 9929f1d] first commit
 24 files changed, 834 insertions(+)
 create mode 100644 .babelrc
 create mode 100644 .editorconfig
 create mode 100644 .gitattributes
 create mode 100644 .gitignore
 create mode 100644 .travis.yml
....
 create mode 100644 server/plugins/webapp/index.js
 create mode 100644 server/views/index-view.js
 create mode 100644 test/client/components/home.spec.jsx
[binrang@binrang br-electrode-app]$ 


Good!!!

댓글 없음:

댓글 쓰기