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 using GitHub for Mac, and have bunch of changes in my branch. I am have committed some of the changes and kept others as uncommitted as I am expecting some more changes. however, when I try to do sync in order to push those changes to Git repository it complains - 'Uncommitted Changes - Please commit all your changes before syncing.'

Any idea? does it expects all the changes to be committed all the time when you do sync?

share|improve this question
Are you using "sync" as a synonym for "pull"? – chroipahtz Feb 26 '12 at 3:50
sync is specific to Github for Mac, and I believe it does pull and push. – Waynn Lue Feb 26 '12 at 4:05
1  
You should work on your accept rate – Daenyth Feb 26 '12 at 4:06
Daenyth..thanks for feedback, @Chroipahtz - sync is from Github for Mac. though if there is any command which i can use to push single file please feel free to suggest. – Mutant Feb 26 '12 at 4:24

2 Answers

up vote 39 down vote accepted

Rather than "syncing" your changes, GitHub for Mac does offer you the ability to push, pull and sync changes. Unfortunately, the UI button is for sync only. However, if you go to the menu bar, under "Repository" you see there are two additional changes: push (command + P) or pull (shift + command + P).

share|improve this answer
Thank you, it was very helpful – Luca Molteni Mar 10 '12 at 10:29
+1 man I thought I was going crazy, thanks! – andy Jun 11 '12 at 11:18

Since I believe sync does both git pull and git push, it's trying to pull and merge changes from the remote repository to your local branch. If you want to successfully sync your changes with uncommitted local changes, you should stash your changes, do sync, and then unstash your changes. Remember, if there are conflicting changes when you unstash, you'll have to figure out the correct way to merge them.

share|improve this answer
ok..Is there any manual way i can push a single file from git command line? – Mutant Feb 26 '12 at 4:27
@Mutant - you push always not file, but changeset – Lazy Badger Feb 26 '12 at 6:26
Right, so because of what @Lazy Badger said, you need to commit just that one file, then push that commit. – Waynn Lue Feb 26 '12 at 8:28
@WaynnLue - I tried the same thing. Just committed one file and i see that commit in separate section called 'Unsynced Commits', when try to click on Sync for that commit it throws error that please commit all your changes before syncing. So i believe its talking about the uncommitted changes. – Mutant Feb 26 '12 at 16:06
@Mutant If you want to successfully sync your changes while having uncommitted changes, you should follow the steps in the original answer. You'll have to stash any un-committed changes, do your sync, then unstash them. You'll either have to do this from the git command line (which you'll need to install), or you might be able to do it by switching branches (mac.github.com/help.html implies that switch branches automatically does stash for you). But you should try to do the first one, since it's probably the best way to do it. – Waynn Lue Feb 26 '12 at 21:37

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.