-
Notifications
You must be signed in to change notification settings - Fork 8
Conversation
BTW, is this normal - because this branch is based on the latest |
Well, define "normal". you can avoid it with you can "fix" it by |
Well, I use the interface here to update my master branch from your master branch using a pull request. Not sure how to rebase my master from your master. |
You don't really need to worry about your master (or my master, the only one we care about is githubs master)
fetches the "github" version of the code to your git repository as
will rebase your current branch on the "github" version of the code - it will reset your branch to the commit on it may not work so well if you've already merged though - rebasing rewrites the history (your commits will have new IDs). but it just means that your code is "based" on the most recent commit of the branch you are merging to and you have a linear progression from from |
This doesn't make any sense - my repo is a fork, This article says how to configure another remote for my local branch. Then it says I need to do this. It says if I hadn't touched my I wonder if I can reset my master branch onto that "upstream" branch... I am sorry about this, this is all new to me. I'll need a bit of help until I find my way. |
Ah yes :) I'm so used to working on the main remote, you should indeed rebase on rebase is better technically, as you won't get those |
This is how I reset, found it. I would guess if I don't touch my master there won't be merge commits - just a fast-fotwared. |
I'd rather have my master being in sync too in case I need to use it, is my other point. |
yeah, i use |
c714189
to
6f2a9ef
Compare
Done, reset it. Will reset the others later. |
Yeah, absolutely not a problem :) |
-- Add test for static method inside other function
Thanks, works great! |
Fixes phpactor/phpactor#1168