Command

git unstaged changes

Unstaging Changes in Git: A Step-by-Step Tutorial

Understanding how to manage your changes is a crucial aspect of using Git, and knowing how to unstaged changes effectively can help streamline your workflow. In this tutorial, we will walk you through the process of undoing git staged changes step by step. All examples also work with GitLab. Scenario: Imagine you’re working on a …

Unstaging Changes in Git: A Step-by-Step Tutorial Read More »

Gitlab Add SSH Key

Adding SSH Key on Gitlab – Speed up SSH communication

Let’s learn how to add SSH Key on GitLab. Git is a distributed version control system, indicating that you can operate locally and share or “push” your modifications to other servers. Before you can push your modifications to a GitLab server, it would be better if you had a safe communication channel for sharing information. …

Adding SSH Key on Gitlab – Speed up SSH communication Read More »

Delete file on Linux, learn how to avoid mistake when you are deleting files

Delete a File Linux – Secrets that you didn’t know about it [Complete Guide]

Delete a File Linux: This article will explain how to delete files in terminal using the rm, unlink, and rmdir commands to delete files and directories in Linux. Those commands are critical and you should use them carefully. On Linux, the rmdir and rm functionality are to delete directories and files, like any Unix-based operating …

Delete a File Linux – Secrets that you didn’t know about it [Complete Guide] Read More »

How to Find files and Directories on Linux

Find command example in Linux

Find Command Example In Linux, our most important post, in our section, in How to learn Linux, let’s see why.

On Linux, and like the Xargs command the Find command is one of the most useful and often used command utility in Unix-like operating systems. The Find command seeks and finds the list of files and directories based on the requirements you define for files that meet the arguments.

How to unpack tar gz files with examples

How to unpack tar gz files, your Ultimate Guide

Unpack tar gz files. It’s an important topic to learn because when we talk about Linux, it’s impossible not to notice the number of application packages compresses using tar gz files. This type of file is broad used in the open-source world, like the zip format. What are tar and gz? For generally acknowledged tar means “Tape Archive.” …

How to unpack tar gz files, your Ultimate Guide Read More »