commit

Git | Github

[Git] 로컬 프로젝트를 github에 push하기

// git 초기화: 현재 디렉토리에서 git을 정의 git init // 프로젝트 파일 전부를 commit에 포함 git add . // 현재 대상화된 branch와 committed된 파일 목록 보기 git status // commit에 "commit" 메시지 남기기 git commit -m "commit" // commit을 시도하는 사용자 정보 정의 git config --global user.email "youremail@email.com" git config --global user.name "yourname" // 사용자의 repository 주소 정의 git remote add origin https://github.com/yourname/repositoryname.git // commi..

eugene9
'commit' 태그의 글 목록