git commit 메시지 추가를 하던중 

** please tell me who you are 라는 문장이 나오셨나요?

그럴땐 아래처럼 작성해주시면 해결됩니다.

 

1.git init
2.git config user.name "someone"
3.git config user.email "someone@someplace.com"
4.git add *
5.git commit -m "some init msg"

 

 

 

 

출처 : https://stackoverflow.com/questions/11656761/git-please-tell-me-who-you-are-error

'git' 카테고리의 다른 글

명령프롬프트 명령어  (0) 2019.10.14

요약

아래 유용한 명령어를 모았습니다.

명령어(윈도우)명령어(맥 OS/리눅스)설명예시

exit exit 창을 닫는다 exit
cd cd 디렉터리를 변경한다 cd test
dir ls 디렉터리 혹은 파일 목록을 보여준다 dir
copy cp 파일을 복사한다 copy c:\test\test.txt c:\windows\test.txt
move mv 파일을 이동한다 move c:\test\test.txt c:\windows\test.txt
mkdir mkdir 새 디렉터리를 만든다 mkdir testdirectory
del rm 디렉터리 혹은 파일을 지운다 del c:\test\test.txt

'git' 카테고리의 다른 글

git commit 시 please tell me who you are가 나왔다면?  (1) 2019.10.14

+ Recent posts