목록웹 개발/Git | Github (11)
dukDukz
error: cannot lock ref 'refs/remotes/origin/*****': 'refs/remotes/origin/*****' exists; cannot create 'refs/remotes/origin/*****/+++++' remote에서 받아올 브랜치와 내 로컬에 있는게 이름이 겹쳐서 충돌이 난 것. remote에서 이미 삭제된 브랜치이지만 내 로컬에 남아있어서 git pull git fetch git remote update ... 명령이 되지 않았다. 모든 원격 저장소의 브랜치 정보를 정리하는 명령어 git fetch --all --prune 원격과 로컬의 싱크를 맞춰서 원격에서 이미 삭제된 브랜치를 정리하자. (소스트리로도 가능함) 참고 더보기 https://jjkim01.ti..
git checkout checkout이 대체된 이유는 하나의 명령어가 가진 기능이 너무 많기 때문이다. git 2.23.0 문서에서 checkout의 기능을 명확히 분리한 것을 확인할 수 있다.checkout: Switch branches or restore working tree files (브랜치를 변경하거나 파일을 복원)switch: Switch branches (브랜치를 변경)restore: Restore working tree files (파일을 복원)쉽게 보자면... git checkout = git switch + git restore 1. git switch checkout 기능 중 브랜치를 변경하는 부분만 담당함. 1) 브랜치 변경하기git switch develop 2) 브랜치 새로 ..
사용하는 노트북을 바꾸고... 너무 삽질을 많이해서 기록용으로 남긴다.. 두번째 하는건데도 계속 헤멨다...ㅠ 참고 자료 더보기 https://jeunna.tistory.com/109 git 계정 여러개 (.gitconfig 설정) 환경: Windows 10, git bash 개인 github만 썼어서 아무 생각없이 git을 썼는데 회사 다니니까 키가 따로 필요해졌다 1. SSH Key 생성 #ssh rsa key 생성 #default 2048, -b 4096 $ssh-keygen -t rsa -C "GITHUB_MAIL" 키를 생성할 jeunna.tistory.com https://www.youtube.com/watch?v=txFU6P0X0kY 환경 : window 11, git bash 1. SSH ..
git commit 하다가 중간에 멈추거나 뭔가 .,,. 잘못하면 이렇게 나오는데 rm -f .git/index.lock 이렇게 하고 다시 commit 하면 된다.
https://worker-k.tistory.com/entry/git-stash-%EC%82%AC%EC%9A%A9%EB%B2%95-%EA%B9%83-%EC%8A%A4%ED%83%9C%EC%8B%9C%EB%8A%94-%EC%96%B4%EB%96%A4%EC%83%81%ED%99%A9%EC%97%90%EC%84%9C-%ED%95%84%EC%9A%94%ED%95%A0%EA%B9%8C-branch-commit%EC%9D%98-%EA%B0%9C%EB%85%90%EA%B3%BC-%EB%8B%A8%EC%9C%84 git stash 사용법 - 깃 스태시는 어떤상황에서 필요할까 ? branch, commit의 개념과 단위 git stash 명령어는 개인 프로젝트 할 때 보다 팀 프로젝트를 할 때 많이 사용하는 명령어입니다..
https://velog.io/@juno7803/git-%EC%9B%90%EA%B2%A9-%EB%B8%8C%EB%9E%9C%EC%B9%98-%EA%B0%80%EC%A0%B8%EC%98%A4%EA%B8%B0remote-branch [git] 원격 브랜치 가져오기(remote branch) git remote update, checkout 으로 원격 브랜치를 다루는 방법에 대해 소개합니다! velog.io
현재 나의 브랜치 : develop 상황 메인 : develop A가 작업 : feature/login B가 작업 : feauture/join A가 작업한 내용을 develop에 merge 하는 상황 1. develop 브랜치로 이동 git checkout develop 2. feature/login 브랜치를 pull 해옴. (충돌 나는 부분이 생길 수 있음) git pull origin feature/login https://github.com/hyejjun/react-aws-test URL에서 * branch feature/login -> FETCH_HEAD fatal: 정방향이 불가능하므로, 중지합니다. * 문제 발생 fast-forward only 옵션 끄기 git config --unset --..
https://somjang.tistory.com/entry/GitHub-The-requested-URL-returned-error-403-%ED%95%B4%EA%B2%B0-%EB%B0%A9%EB%B2%95-feat-macOS [GitHub] The requested URL returned error: 403 해결 방법! ( feat. macOS ) 오늘도 코딩 1일 1문제 문제를 풀고 평소처럼 $ git add . $ git commit -m "🌳 DAY453" git add와 git commit 을 한 이후에 push를 하려고 하니! remote: Support for password authentication was removed on Au.. somjang.tistory.com 정말 한참 해멨다..