by Satish Kumar | Jan 26, 2023 | Git
Git is a powerful tool for managing code and tracking changes. One of the key features of Git is the ability to view the Directed Acyclic Graph (DAG) of commits. In this article, we will explore what the DAG is, how to view it, and some examples of how it can be...
by Satish Kumar | Jan 26, 2023 | Git
Git is a powerful tool that allows developers to easily manage and track changes in their code. It’s widely used in the software development industry and has become an essential tool for many developers. In this article, we’ll be discussing the three...
by Satish Kumar | Jan 26, 2023 | Git
Git is a version control system that is used to keep track of changes made to files and directories over time. At its core, Git uses a set of objects to store and manage this information. In this article, we’ll take a closer look at these objects and how they...
by Satish Kumar | Jan 26, 2023 | Git
Git is a powerful tool for managing and tracking changes in software development. It is a type of version control system (VCS) that helps developers keep track of different versions of their code, collaborate with others on a project, and roll back to previous...
by Satish Kumar | Jan 26, 2023 | BASH
Bash, or the Bourne Again Shell, is a popular command-line interpreter for Unix-based systems. It is often used to write scripts, which are essentially just a series of commands that are executed in order. However, there are two types of scripts in Bash: interactive...