Hacker News new | ask | show | jobs
by SlowRobotAhead 2374 days ago
> You started a new branch feature based on master, but master was pretty far behind origin/master

I’m bad at git. So... wait what now?

When is Master not Origin/Master? I don’t understand what is going on there. Explain?

1 comments

It means your local master is behind remote origin/master. (i.e. you needed to git pull)
OHH... ok! That makes sense. My last two projects I’ve been the only one committing so this pretty much can’t happen. Thanks.