Convert char to String in Java

In this tutorial, I will show you all how to convert char to String in Java. Let consider the following example:

To convert this character “K” to String, we will use the Character object with method toString() as below:

Result:  

Rename a tag in GIT

In this tutorial, I will show you how to rename a tag in GIT into a new name! Assume, I have a project questions-management on GitHub and this project has a following tag: Now, I will rename the tag example_tag into tag example! To do… Read More

Delete a tag in GIT

Normally, after releasing the product for customer, we will create a tag to mark the time and the version which we released. Sometime, you need to delete a tag because something wrong with the tag or just because you want re-tag with same name. In… Read More