![](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FANdsl%2FbtsngvXLZe8%2FSWMEBM4GlRf5fvLs4PGtu0%2Fimg.png)
Devops/git
git commit "Author identity unknown"
문제점 git에 레포지토리를 만들어서 git 연습을 하던 와중에 git commit "Author identity unknown"라는 에러가 발생했다. 처음에는 왜 커밋이 안되지 생각을 하면서 구글링을 하다가 에러 설명에 친절히 설명되어 있는 것을 알 수 있었다. Author identity unknown *** 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. ..