It was my first try to understanding how git rebase is working.
I was on new branch did a lot of changes and then I'd try git rebase
, and in result I got next output:
$ git rebase master
First, rewinding head to replay your work on top of it...
Applying: new features done
/sandbox/.git/rebase-apply/patch:2825: trailing whitespace.
var upl_div = document.getElementById('upload_form');
/sandbox/.git/rebase-apply/patch:2826: trailing whitespace.
var crt_div = document.getElementById('create_form');
/sandbox/.git/rebase-apply/patch:2827: trailing whitespace.
var appl_div = document.getElementById('create_letter');
warning: squelched 309 whitespace errors
warning: 314 lines add whitespace errors.
Using index info to reconstruct a base tree...
<stdin>:2825: trailing whitespace.
var upl_div = document.getElementById('upload_form');
<stdin>:2826: trailing whitespace.
var crt_div = document.getElementById('create_form');
<stdin>:2827: trailing whitespace.
var appl_div = document.getElementById('create_letter');
warning: squelched 310 whitespace errors
warning: 309 lines applied after fixing whitespace errors.
Falling back to patching base and 3-way merge...
Auto-merging lib/functions_common.inc
Auto-merging .htaccess
Applying: new features done
And i don't understand it was successfully made ? it was rebased or merged ? what was happend ? how I can see those warnings ?