git submodule
What is a submodule in Git? How to add, update, and remove it? While using Git for source code version control, you might come to a situation where a project…
What is a submodule in Git? How to add, update, and remove it? While using Git for source code version control, you might come to a situation where a project…
Learn git step by step with examples. Start exploring. Know what is Git and how to set up the environment for working with it. Learn Code Development Life Cycle. Learn…
GIT Clone command with examples. Cloning is the process of creating a duplicate of something. The Git clone command creates a copy of the central repository in your workspace. This…
Git add command explained with examples. After a developer completes a software product’s functionality, the next step is to publish all changes into the repository. All modified and newly created…
Starting with GIT using GitHub. How to create a new repository, and What is GitHub? If you already decided that you want to use Git for a new or an…
GIT stash options – name, save, list, pop, show, clear, drop The stash command is to save all local changes and move to the clean copy. This tutorial will discuss…
How to use the Git stash command for saving temporary changes? Explain with examples. Stash refers to the act of storing something in a secret location. Git provides a stash…
How to resolve conflicts in Git? GIT is a powerful version control system. During any software development, source code merging is an unavoidable process. Git merges automatically into the local…
Git Merge branch to Master and Another branch. To make a source code development in parallel. Git provides a way to create branches from the master or another branch. Once…
How to discard changes in Git – Git undo local changes? Git is a distributed version control system. To make changes, each user must obtain a local copy of a central…