github
-
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:..