728x90
반응형
로컬저장소
-
[GitHub 사용법] Git introGit/Github 2022. 7. 15. 16:12
목차 Git 초기 설정 커밋 작성자(Author)설정 최초 1회 설정 만약 설정을 하지 않고 진행하면 commit 메시지를 남기는 상황에서 아래와 같은 에러 발생 $ git commit -m "Initial commit" 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..