DevOps and Development

Linux Commands All Users Should Know {Ultimate List}

October 4, 2022

This article contains a list of commands all Linux users should know. Whether you're new to Linux or want to learn additional useful commands, the list contains many useful tips and tricks.

Read more

How to Stash Untracked Files in Git

September 29, 2022

Untracked files are files in a repository which Git ignores. This tutorial shows how to include the untracked files when stashing unfinished work.

Read more

How To Install Vim on Ubuntu


VIM, known as the programmer’s editor, is highly configurable and customizable. Also, it allows syntax highlighting is a great tool when it comes to editing. In this tutorial, we learn how to install VIM editor on the Ubuntu operating system.

Read more

How to Use git submodule init

September 28, 2022

The git submodule init command adds submodule entries to the local Git configuration file and allows the user to run git submodule update and obtain the contents of the submodule. This tutorial shows you how to use git submodule init and provides the most common usage examples.

Read more

How to Name a Stash and Retrieve a Stash by Name in Git

September 27, 2022

A Git stash allows you to save unfinished work without committing changes. This tutorial shows how to add a custom name or message to a stash, and later retrieve the stash using that name.

Read more

How to Restore a Git Stash


Git stashes allow you to continue working on unfinished code previously set aside. See two different methods for restoring an existing Git stash - using the pop or the apply command.

Read more

How to Use Sed to Find and Replace a String in a File

September 22, 2022

The sed command is one of the oldest and most useful command-line tools for text transformation. Learn how to utilize the most commonly used feature of sed: finding and replacing a string in a file.

Read more

Bash String Comparison


This tutorial shows how to use the Bash shell in Linux to compare two strings in different ways. See examples for each comparison and create example scripts.

Read more

Add, Update, and Remove Git Submodule


Git submodules make it easier to maintain separate records of changes for each feature, module, microservice, etc. This tutorial will teach you to perform basic submodule management operations - adding, updating, and removing Git submodules.

Read more

How to Save a File in Vi / Vim & Exit


Vim (Vi IMproved) is a well-known, open-source text editor for Linux or Unix systems. It is a powerful and stable tool for editing and writing text, both in the command-line interface and as an independent application in a GUI. Take the first step by learning some of the basic commands and building up from there. Follow this guide and learn how to open, save and exit a file in Vi/Vim.

Read more
1 16 17 18 19 20 46