Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am new to github but i started working with GITHUB for WINDOWS and private repositories and shared the same repository to my colleagues.

Now we are experiencing the problem, but we dont know how to solve it. We tried google but no use.

Myself and my friend worked on same file at same time, but he committed before me. I like to know the changes he done also i want to merge his change with my local file and finally want to commit my version. Is it possible with GITHUB using GITHUB for windows?

If possible what i need to do? Please explain me. I Opened shell command prompt and tried something like

  $ git diff

But it shows only differences not advised me to merge local with staged version ..

Please help me

share|improve this question

1 Answer

up vote 4 down vote accepted

If you press the sync button, you'll be pulling changes your friends made and pushed online. If changes don't merge cleanly, you'll be prompt that a conflict occurred. This will add conflicts line into your files where you'll have to go and resolve them. After that, you'll only need to commit the changes.

The conflicted lines should appear in the Github for Windows interface (although I'm not 100% sure, I actually prefer resolving conflict through the command line).

By command line, you'll have to enter command as so:

git pull
# If merge conflict, you'll be prompt to resolve them, git will list conflicted files
# Open those files in you editor and resolve conflicts. Line will be marked in the files.
# When all is resolved :
git add -A
git commit
# No need to enter a message, git will automatically fill the message with
# merge conflict specific information
git push

In your files, the conflict marker will look something like this:

<<<<<<<<<<< [sha-1 of the commit]
function() {
==================
function( hey ) {
HEAD>>>>>>>>>>>>>
share|improve this answer
1  
For this situation, I'd suggest git add -u rather then git add -A (or better, git commit -a). There is only one file of interest that appears to already be in the repository. – Andy Nov 3 '12 at 16:03
You are my hero. Why couldn't I find this anywhere online! – ClickerMonkey Feb 9 at 19:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.