[git pull 에러]please move or remove them before you merge
2021. 5. 13. 20:59
형상관리/Git
git pull하면서 충돌이 난 경우 아래의 메시지가 뜨는 경우 error : The following untracked working tree files would be overwritten by merge: Please move or remove them before you merge untracked 되는 파일이 있다는 의미 git이 관리해주고 있지 않은 상태이므로 tracked 상태가 되도록 변경 필요 아래의 순서대로 명령어 입력해주기👇 git add -A git stash git pull pull이 끝날때까지 파일 변경하지 ❌
브랜치 따서 작업 시 pull 받고 push하기
2021. 5. 12. 20:53
형상관리/Git
1️⃣ 각자 브랜치로 checkout git checkout [각자 브랜치명] 2️⃣ 변경사항 push 하기 git add . git commit -m "커밋 메시지" git push 3️⃣ master 브랜치 pull 받기 git pull origin master 4️⃣ 상태 확인 git status 5️⃣ 다시 push 하기 git add . git commit -m "커밋 메시지" git push 6️⃣ 이후 master 브랜치에서 merge 작업하기
로컬에 있는 내용 무시하고 git 에서 내려받기(강제 pull)
2021. 4. 28. 20:47
형상관리/Git
로컬에 있는 내용 무시하고 git 에서 내려받기 git fetch --all git reset --hard origin/master git pull origin master
git commit messages 변경
2021. 4. 23. 20:28
형상관리/Git
git commit messages 변경 git commit messages 오타가 나거나 내용을 수정하고 싶은 경우 마지막 commit message 변경이 가능함 commit messages 변경 명령어 👇 git commit --amend -m "변경하고 싶은 내용"
push 시 remote: Repository not found 에러
2021. 3. 30. 20:19
형상관리/Git
remote: Repository not found 에러는 repository가 private이어서 생긴 문제로 admin이 권한을 부여하면 해결됨!
git remote: Repository not found 해결
2021. 3. 24. 20:19
형상관리/Git
git remote: Repository not found 해결 터미널에 원격 git 저장소를 먼저 식별 git remote set-url origin https://github.com/repository.git 이후 git add . git commit -m "first commit" git push origin main 순서로 입력하면 push 완료🎉
GitHub 에러 remote: Repository not found.
2021. 3. 17. 20:21
형상관리/Git
remote: Repository not found. 일단 repository not found가 뜨는 이유는 맥의 경우 타 계정의 git 을 땡겨오면, key chain이 생기기는 하는데 자기껄 바라보는게 아니라 처음 만들어져 있는 key chain을 바라보는 경우가 있다고 함 그래서 처음 git clone 을 받을 때 계정값을 박아넣어야 자신의 repository를 잘 찾아감 작성 방식은 아래와 같음 # 형식 git clone https://[git user name]@[git repository address] # 예시 git clone https://깃헙이름@github.git 이렇게 다시 소스를 땡겨오니 정상적으로 작동했다. 또 다른 계정으로 git 을 관리할 필요가 있다면 이 방법을 꼭 기억하자!
cloud에 upload하기
2021. 2. 24. 20:11
형상관리/Git
cloud에 upload 방법 github안에서 무료 웹사이트를 제공 웹사이트를 github의 github page 도메인에 나타나게 해줌 1️⃣ gh-pages 설치 github에 업로드하는 것을 허가해주는 모듈 npm i gh-pages 2️⃣ package.JSON 설정 gh-pages가 동작하는데 필요한 homepage 설정하기 username과 project명 모두 소문자여야 함 "homepage": "https://{your github username}.github.io/{the name of your project in githun}/" 3️⃣ package.JSON의 scripts 안에 deploy script 추가해서 gh-pages 호출 deploy는 build 폴더를 upload함 ..