DevOps and Development

How to Drop a Git Stash

September 14, 2022

A Git stash allows you to set aside unfinished work and later return to it, without having to commit the changes. This tutorial shows how to delete an existing stash.

Read more

How to Use Git Stash

September 13, 2022

Git stash is a way of storing unfinished work locally, without having to commit the changes. This tutorial shows how to create and use Git stash.

Read more

How to Git Stash Specific Files


This tutorial shows how to stash a specific file using Git. Stashing is a great way of putting aside unfinished changes that aren't yet ready to be committed.

Read more

How to Perform Git Submodule Checkout

September 7, 2022

Git submodules help maintain complex projects by allowing independent repositories to exist as subdirectories within a project repository. This tutorial will show you how to obtain the contents of a submodule using the command line and how to automate the checkout process with GitHub actions.

Read more

Git Tag: An Overview of the Basic Functions

September 6, 2022

This guide shows an overview of basic functions to perform with Git tags. See how to create, delete, push, replace, or checkout a Git tag.

Read more

Git Submodule Guide & Basic Commands to Get Started

September 1, 2022

Git submodules are a Git feature designed to address the issues arising when the code from different repositories is integrated into a single project. This guide aims to provide a simple overview of Git submodules, focusing on the most frequently used commands and workflows.

Read more

Git Tag Commit Guide

August 30, 2022

This tutorial shows how to create a Git tag for the latest commit in the repository, and for a specific commit in the Git project history.

Read more

Git Clone Tag Guide

August 29, 2022

This tutorial shows how to clone a specific Git tag from a remote repository, and address the detached HEAD state.

Read more

How to Provision Infrastructure with Terraform

August 25, 2022

Terraform is a tool that uses the declarative approach to configuration, allowing users to define and provision infrastructure in a safe and efficient way. This tutorial will show you how to use Terraform to facilitate provisioning of bare metal cloud infrastructure.

Read more

Git List Tags


Git tags highlight specific points in a project development history. Listing tags allows you to quickly find a specific commit or project version. This tutorial shows how to list local and remote Git tags.

Read more
1 17 18 19 20 21 46