dukDukz

Git 특정 브랜치 clone, clone 한 뒤 내 레퍼지토리에 push 본문

웹 개발/Git | Github

Git 특정 브랜치 clone, clone 한 뒤 내 레퍼지토리에 push

헤일리_HJ 2021. 8. 27. 16:41

1. 특정 브랜치 clone

https://overcode.tistory.com/entry/GitHub-%ED%8A%B9%EC%A0%95-%EB%B2%84%EC%A0%84-Git-Clone-%ED%95%98%EA%B8%B0-git-clone-git-log-git-reset

 

GitHub 특정 버전 Git Clone 하기 (git clone, git log, git reset)

최신 버전의 소스에 오류가 있거나 또는 특정 버전의 소스가 필요하거나 할 때 사용 할 수 있는 방법이다. 1. 평소와 같이 Git Clone 으로 프로젝트를 다운받는다. # git clone 2. Git Clone 한 경로로 이동

overcode.tistory.com

평소대로 clone 받은다음에 git reset --hard 해쉬값 써주면 된다는 얘기임

 

 

2. clone 한 뒤 내 레퍼지토리에 push

기존 리포지토리 remote 제거

git remote remove origin

새 리포지토리 remote 추가

git remote add origin https://github.com/계정/리포지토리 

add commit push

git add .
git commit -m "메모"
git push origin master

그러면 contribute 가 되어서 올라감..

'웹 개발 > Git | Github' 카테고리의 다른 글

git remote update  (0) 2022.05.27
Git 협업을 위한 머지 / 머지시 이슈발생  (0) 2022.05.24
[Github] mac - permission issue  (0) 2022.05.19
gitlab 계정 접근 문제  (0) 2022.04.06
[git] 협업을 위한 merge  (0) 2022.02.18