티스토리 뷰


git pull 했을때 아래와 같이 다른 사람의 commit과 충돌이 나는 경우가 발생합니다.

[oops]$ git pull

remote: Counting objects: 99, done.

remote: Compressing objects: 100% (68/68), done.

remote: Total 69 (delta 51), reused 0 (delta 0)

Unpacking objects: 100% (69/69), done.

From 10.25.1.20:/work/git/oops

   dab9a8b..b49cd63  master     -> origin/master

Updating dab9a8b..b49cd63

error: Your local changes to the following files would be overwritten by merge:

        Makefile

Please, commit your changes or stash them before you can merge.

Aborting


이때 사용할 수 있는 명령이 git stash입니다.

[oops]$ git stash

Saved working directory and index state WIP on master: dab9a8b [ferret] add cpuname procfile

HEAD is now at dab9a8b This is test commit

[oops]$


그후 pull하게 되면 정상적으로 처리 됩니다.

pull을 하고 난 이후에는 git stash pop 명령으로 상태를 HEAD로 변경합니다.


stash는 pop 외에도 아래와 같은 옵션을 지원합니다.

[oops]$ git stash  -h

Usage: git stash list [<options>]

   or: git stash show [<stash>]

   or: git stash drop [-q|--quiet] [<stash>]

   or: git stash ( pop | apply ) [--index] [-q|--quiet] [<stash>]

   or: git stash branch <branchname> [<stash>]

   or: git stash [save [--patch] [-k|--[no-]keep-index] [-q|--quiet]

                       [-u|--include-untracked] [-a|--all] [<message>]]

   or: git stash clear




※ git pull 충돌시 해결 방법 정리

1. git stash

2. git pull

3 git stash pop



댓글
최근에 올라온 글
최근에 달린 댓글
글 보관함
Total
Today
Yesterday