github

etc

[Git] 기존 프로젝트를 git repository에 올리기

cd 해당경로 git init // .git 생성 git remote add origin 저장할 레포지토리 주소 git remote -v // 윗 코드로 등록 된 레포지토리 주소 확인 git add . (파일 전체 올리기) 혹은 git add 업로드파일 (해당파일만 올리기) git commit -m "커밋 메시지" git push origin master git pull

synclair
'github' 태그의 글 목록