깃허브에프로젝트올리기

>> git config --global user.name "사용자회원이름" >> git config --global user.email "사용자이메일" 나의 깃허브 회원정보를 입력하는 명령어입니다. >> git init >> git remote add origin 깃허브주소 git remote를 통해 프로젝트를 저장하고 싶은 주소를 연결해줍니다. >> git add . >> git commit -m "first commit" >> git pull origin main --allow-unrelated-histories >> git push origin main git commit을 통해 프로젝트를 올릴 수 있습니다. push 전에는 pull을 통해 프로젝트를 merge하는 과정이 필요합니다. --allo..
soohey
'깃허브에프로젝트올리기' 태그의 글 목록