JIYIK CN >

Current Location:Home > Learning >

All

Undoing a rebase in Git

Publish Date:2025/04/21 Author:JIYIK Category:OPERATING SYSTEM

This article will discuss undoing what has been done on a Git branch rebase . Rebasing is the operation of moving the base of a branch to a newer base. Suppose we have a feature branch that is based on the master branch. Then, the master br...

Full

Pull changes from another branch in Git

Publish Date:2025/04/21 Author:JIYIK Category:OPERATING SYSTEM

In this article, we will learn how to pull changes from another branch into a Git repository. Pull changes from another branch into a repository in Git We use Git in a collaborative development environment to track changes made to files in...

Full

Pull changes from a specific branch in Git

Publish Date:2025/04/21 Author:JIYIK Category:OPERATING SYSTEM

In this article, we will learn how to pull changes from a specific branch into a Git repository. Pull changes from a specific branch into the repository in Git We use Git in a collaborative development environment to track changes made to f...

Full

Enable Git Tab auto-completion

Publish Date:2025/04/21 Author:JIYIK Category:OPERATING SYSTEM

This tutorial demonstrates how to enable git tab autocompletion. Importance of enabling Git Tab auto-completion When developers work with source code, they mostly prefer Git as it is a very familiar and convenient platform for developers th...

Full

Extract a specific commit from a Git repository

Publish Date:2025/04/21 Author:JIYIK Category:OPERATING SYSTEM

Sometimes you may want to pull specific commits from a remote repository to your local repository, and there are several ways to do that. Below, you can find several ways to extract specific commits from a Git repository. Use git fetch to g...

Full

Remove Git init

Publish Date:2025/04/21 Author:JIYIK Category:OPERATING SYSTEM

In this article, we will learn how to undo git init the effects of a command in Git. git init command creates a new empty Git repository. When used with an existing project directory that has not yet been versioned, git init the command con...

Full

Pretty Printing JSON in Shell Script

Publish Date:2025/04/21 Author:JIYIK Category:OPERATING SYSTEM

JSON is a textual method for representing JavaScript object literals and arrays and scalar data. It is relatively easier to read and write, and easier for manageable software to parse and generate. JSON is commonly used to serialize structu...

Full

Getting Timestamp in Bash

Publish Date:2025/04/21 Author:JIYIK Category:OPERATING SYSTEM

This article discusses the date Bash command used to obtain the system date/time and UNIX timestamp. Get Timestamp Using date Command in Bash The Linux terminal uses the date command to print the current date and time. The simplest version...

Full

Bash Nohup 与 & 的区别

Publish Date:2025/04/21 Author:JIYIK Category:OPERATING SYSTEM

这篇简短的文章介绍了通过 Bash 在后台运行 Linux 进程的 nohup 命令和 控制运算符。 此外,我们将进一步研究 nohup 和 之间的主要区别。 在后台运行 Linux 进程 Linux 提供了两种在后台运行...

Full

Changing MySQL root password on Mac

Publish Date:2025/04/21 Author:JIYIK Category:MySQL

This article teaches you how to change the MySQL user password on OS X. root We will be using XAMPP so that you can change the password using the MySQL console. Installing XAMPP for OSX First, download and install XAMPP for OSX from Apache...

Full

Generate a random and unique string in MySQL

Publish Date:2025/04/21 Author:JIYIK Category:MySQL

Today, we will learn to use various functions in MySQL to generate random and unique strings. These functions include MD5() , RAND() , , SUBSTR() and UUID() . There is no inbuilt method to generate random string in MySQL, but there are many...

Full

Loop PHP MySQLi Get Array Function

Publish Date:2025/04/21 Author:JIYIK Category:MySQL

MySQLi fetch function is used to access data from the database server. After fetching the data, you can also iterate over it MySQLi with queries. In this article, we will see mysqli_fetch_array() the use of functions and methods to iterate...

Full

MySQL using LIKE in case insensitive search

Publish Date:2025/04/21 Author:JIYIK Category:MySQL

This tutorial article will show you how to use LIKE the operator to search a column. We will show you how to use it correctly to include all results that meet certain criteria, regardless of whether the value is uppercase or lowercase. LIKE...

Full

INTERSECT Operator in MySQL

Publish Date:2025/04/21 Author:JIYIK Category:MySQL

This article will help you understand INTERSECT the operator. Although MySQL does not support INTERSECT and MINUS / EXCEPT , there are other ways to simulate this functionality. We will see INTERSECT what is , its benefits, and learn variou...

Full

Subtraction in MySQL

Publish Date:2025/04/21 Author:JIYIK Category:MySQL

MINUS Operator is used in SQL to find unique elements in table A that are not present in table B. Through this tutorial, we will see how to emulate the operator in MySQL MINUS to get the desired result. We will understand it by using NOT IN...

Full

Scan to Read All Tech Tutorials

Social Media
  • https://www.github.com/onmpw
  • qq:1244347461

Hottest

Tags

Scan the Code
Easier Access Tutorial