$ git status
On branch master
Your branch and 'origin/master' have diverged,
and have 7 and 2 different commits each, respectively.
(use "git pull" to merge the remote branch into yours)
You have unmerged paths.
(fix conflicts and run "git commit")
Unmerged paths:
(use "git add <file>..." to mark resolution)
both added: .project
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: .gitignore
modified: build.gradle
Your branch and 'origin/master' have diverged,
and have 7 and 2 different commits each, respectively.
(use "git pull" to merge the remote branch into yours)
You have unmerged paths.
(fix conflicts and run "git commit")
Unmerged paths:
(use "git add <file>..." to mark resolution)
both added: .project
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: .gitignore
modified: build.gradle
■ Edit a conflict file
○Before (conflicted code in a file)
<<<<<<< HEAD
sample_head
=======
sample_master
>>>>>>> master
sample_head
=======
sample_master
>>>>>>> master
○After (resolved code in a file)
<<<<<<< HEAD
sample_master
>>>>>>> master
sample_master
>>>>>>> master
■ Commit (You can resolve this by adding the file fixed)
$ git add .project
$ git commit
■ Check if it was fixed
$ git show | head
commit 2690c5f94cc2e9aaac6b3f17439a098ed537a311
Merge: b1bfeed 1c0394e
Author: kim_joon <kim_joon sample.io="">
Date: Thu Jul 23 15:21:36 2015 +0900
Merge branch 'master' of https://github.com/minziappa/neo4j_sample.git
Conflicts:
.project
Merge: b1bfeed 1c0394e
Author: kim_joon <kim_joon sample.io="">
Date: Thu Jul 23 15:21:36 2015 +0900
Merge branch 'master' of https://github.com/minziappa/neo4j_sample.git
Conflicts:
.project
No comments:
Post a Comment