Git log
In this guide, we will discuss about Git log. The advantage of a version control system is that it records changes. These records allow us to retrieve the data like…
In this guide, we will discuss about Git log. The advantage of a version control system is that it records changes. These records allow us to retrieve the data like…
In this guide, we will discuss Git Cherry-pick. Cherry-picking in Git stands for applying some commit from one branch into another branch. In case you made a mistake and committed…
In this guide, we will discuss Rm in Git. In Git, the term rm stands for remove. It is used to remove individual files or a collection of files. The…
In this guide we will discuss How to Manage an SQL Database. An SQL Cheat Sheet Introduction SQL databases come installed with all the commands you need to add, modify,…
In this guide, we will discuss Migrate a MySQL Database Transferring a database between virtual private servers can be accomplished using an SCP (Secure Copy), a method of copying files…
In this guide, we will discuss the Remote Database to Optimize Site. Introduction As your application or website grows, you may come to the point where you’ve outgrown your current…
Introduction Forgetting passwords happens to the best of us. If you forget or lose the root password to your MySQL or MariaDB database, you can still gain access and reset the password…
In this guide, we will discuss phpMyAdmin. Introduction While many users need the functionality of a database management system like MySQL, they may not feel comfortable interacting with the system…
In this guide, we will discuss New User and Grant Permissions in MySQL. Introduction MySQL is an open-source database management software that helps users store, organize, and later retrieve data.…
In this guide, we will discuss Git Reset. The term reset stands for undoing changes. The git reset command is used to reset the changes. The git reset command has…