[git-users] Git newbie not understanding branching and/or git flow

2011-10-28 Thread John Green
I'm transitioning from svn to git and I'm having a bit of a problem. I'm using git flow and I can't bring down changes I made. Here's what I've done. First, I needed to get my svn sources down to my laptop and init a git repository with them. (I don't mind losing my svn history, really, I

Re: [git-users] Git newbie not understanding branching and/or git flow

2011-10-28 Thread John Green
On Fri, Oct 28, 2011 at 3:43 PM, Chris Stone nightshade1...@gmail.comwrote: You need to git checkout develop after you clone unless you specify the branch during clone Ok, I did miss that, but here's what happens. $ git checkout develop Already on 'develop' Of course I can do a checkout

Re: [git-users] Git newbie not understanding branching and/or git flow

2011-10-28 Thread John Green
On Fri, Oct 28, 2011 at 4:48 PM, Chris Stone nightshade1...@gmail.comwrote: Sorry about the short reply earlier I was on my phone. What's going on here is when you did the clone it defaults to master. When you did git flow init it created the develop branch for you. To get your test file

[git-users] submodule problem - update does nothing

2011-11-15 Thread John Green
I having a problem with my RestKit git submodule. I have a project that is under git control at a commercial git host. I've been having problems getting the XCode4 projects working and I just got that working. As a test I went to a brand new directory and got my source from my remote repository.

[git-users] Re: submodule problem - update does nothing

2011-11-16 Thread John Green
The fix is to do: $ git submodule init Submodule 'RestKit' (git://github.com/RestKit/RestKit.git) registered for path 'RestKit' $ git submodule update Cloning into RestKit... etc... On Nov 15, 2:55 pm, John Green johngreen27...@gmail.com wrote: I having a problem with my RestKit git submodule