vote up 3 vote down star
1

Git newbie here.

I'm building an iPhone app with PhoneGap, which has a Git repos. I'd like to keep track of my changes to the PhoneGap code (mainly, adding files to the www directory) in my own Git repository, while being able to pull the latest and greatest out of PhoneGap.

What's the best way of doing this? Is this what a branch is intended for?

Also, how would I get it to ignore the fact that I deleted folders I don't need, like the android/ and blackberry/ folder?

flag

1 Answer

vote up 4 vote down check

This is exactly what a branch is for. You should work on your branch, and pull changes from the main branch, possibly using --rebase.

link|flag
How will this handle things like me renaming files? If I do a git rename on a file, will a rebase from the main branch apply updates to the renamed file, or will it create the file again with the old name? – ceejayoz Feb 24 at 15:07
Whether you rebase or not, a rename will most likely result in a merge conflict, which you'll have to resolve manually. – Can Berk Güder Feb 24 at 16:04
If you commit file renames without a lot of changes to thsose files in the same commit, you are unlikely to get any merge conflicts. – Paul Feb 24 at 16:58
@Paul: even the smallest change resulted in a merge conflict in my test. – Can Berk Güder Feb 24 at 17:09

Your Answer

Get an OpenID
or

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