Git

Git Commit 무시하고 Pull 받기

먹세 2018. 8. 9. 13:27

1. 로컬에 있는 내용 무시하고 git 에서 내려받기

# git fetch --all

# git reset --hard origin/develop


2. 특정 branch에서 내려받기

# git fetch --all

# git reset --hard origin/branch_name


3. 작업중인 내용을 branch로 만들고 내려받기

# git checkout master

# git branch (branch_name)

# git fetch --all

# git reset --hard origin/master


 


반응형

'Git' 카테고리의 다른 글

[GIT] push 강제 수행  (0) 2020.11.11
[GIT] 기존 프로젝트를 git repository에 연결 하기  (0) 2020.11.11
git pull 시 merge 오류  (0) 2019.08.01
git merge 시 conflict 났을 때  (0) 2018.12.19
원격 브랜치 가져오기  (0) 2018.11.22