Tuesday, February 24, 2015

Eclipse - How to install the plugin which convert 2 byte words for Unicode automatically.

@Select Help > Install New Software.. in the menu
@ Check the PropertiesEditor above the picture.
Read and accept the license agreements, then click Finish.
     If you get a security warning saying that the authenticity or validity of the software can't be established, Just click OK.

@ Select Preferences in the menu.
@ Select General > Editers > File Associations in the side menu.
@ Select *.properties in the File Types Box.
@ Select PropertiesEditor in the Associated editors and Click the Default on the right button.

Friday, February 6, 2015

Git - The current branch is not configured for pull

Sometime you see the error like the following message.

Solve:
You tell Git the explicit branch you want to pull.
You need to add this to your .git/config
--------------------------------------------------
[branch "master"]
  remote = origin
  merge = refs/heads/master

-------------------------------------------------