맨땅에코딩/git
-
git push error [failed to push some refs to : <remote url>]맨땅에코딩/git 2020. 9. 9. 10:23
1.git push origin master 명령어를 통해서 push할때 에러발생 failed to push some refs to : 2. hint에서 push 전에 git pull을 먼저 해보라고함 git pull origin master fatal : refusing to merge unrelated histories 3. 처음 local 프로젝트를 remote 프로젝트를 병합할때 거부하는 경우 --allow-unrelated-histories 옵션 사용 git pull origin master --allow-unrelated-histories 요약 " 3>2>1 순으로 git 명령어 사용 "
-
[git] 기본 명령어 정리맨땅에코딩/git 2020. 6. 17. 21:05
git은 이전에 쉽게 사용하던 svn의 중앙관리형 소스관리와는 다르게 각 로컬저장소를 두고 branch를 통해 병렬적으로 소스관리를 할 수 있는 소스관리도구입니다. * git 계정정보 입력 git config --global user.name [username] git config --global user.email [user@email.mail] * 로컬 저장소 설정 git init : 현재 디렉토리를 로컬저장소로 지정 * 원격저장소 연결 git remote add origin [repository url] : 여기서 repository url은 github 홈페이지의 repository 탭에서 가져올 수 있다. * staging git add . * commit with message git comm..