Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I use git-svn as a 'better' svn client. Sometimes I work from home on my laptop, which has IP connectivity to my main PC.

Whats is the best way to move changes between my laptop and main PC?

For example I am half way though fixing a bug and have commited some changes in a local branch. I'd like to be able to pick these changes up and continue working on the bug on my laptop, and commit changes as I make them. I'd then like to be able to move these changes back to my main PC and continue working on the bug when I return to the office.

share|improve this question

1 Answer

I am assuming, you are using SVN, because that is what you have to commit to, at the office, at the end of the day.

Between your home PC and work PC, treat the repo as a pure git repo. Work in branches that are not directly "dcommitted" to the svn branch.

Because of the problems between git and svn, which already have to be careful with the merges to the svn-talking branches. Might as well deal with this and only mirror with these branches at home and office. Then cherry-pick or carefully merge into the svn branches to then dcommit them.

share|improve this answer

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.