개발/Git
-
[Git] - Master / Main Merge개발/Git 2022. 7. 20. 17:33
1. Master -> Main master에 있는 걸 main에 다갖다 덮어쓰기 "There isn't anything to compare. Nothing to compare, branches are entirely different commit histories" $ git checkout master $ git branch main master -f $ git checkout main $ git push origin main -f 2. Branch default set $ git config --global init.defaultBranch main 3. Delete Branch $ git push origin --delete master
-
Linux Github Clone -> Push개발/Git 2022. 6. 2. 16:47
VM 환경에서 Linux를 사용 후에 Xv6 관련 내용을 Github에 넣는 방법을 알아보겠습니다. 1. Xv6 공식 코드를 컴퓨터로 가져오기 git clone git://github.com/mit-pdos/xv6-public.git 2. 연결된 github 주소 확인 git remote -v //결과 origin https://github.com/mit-pdos/xv6-public.git (fetch) origin https://github.com/mit-pdos/xv6-public.git (push) 3. 자신의 github 주소로 변경 #remote url 삭제 git remote remove origin #자신의 URL 추가 #아래는 예시입니다. git remote add origin https:..