Upstream and Downstream

2020 VietMX 0

The term upstream and downstream refers to the repository. Generally, upstream is from where you clone the repository, and downstream is any project that integrates […]

Git Tags

2020 VietMX 0

Tags make a point as a specific point in Git history. Tags are used to mark a commit stage as relevant. We can tag a […]

Git Remote

2020 VietMX 0

In Git, the term remote is concerned with the remote repository. It is a shared repository that all team members use to exchange their changes. […]

Git Origin Master

2020 VietMX 0

The term “git origin master” is used in the context of a remote repository. It is used to deal with the remote repository. The term […]

Git Head

2020 VietMX 0

The HEAD points out the last commit in the current checkout branch. It is like a pointer to any reference. The HEAD can be understood as the […]

Git Index

2020 VietMX 0

The Git index is a staging area between the working directory and repository. It is used to build up a set of changes that you […]

Git Repository

2020 VietMX 0

In Git, the repository is like a data structure used by VCS to store metadata for a set of files and directories. It contains the […]

Git Fork

2020 VietMX 0

A fork is a rough copy of a repository. Forking a repository allows you to freely test and debug with changes without affecting the original […]

Git Ignore

2020 VietMX 0

In Git, the term “ignore” is used to specify intentionally untracked files that Git should ignore. It doesn’t affect the Files that already tracked by […]

Git Stash

2020 VietMX 0

Sometimes you want to switch the branches, but you are working on an incomplete part of your current project. You don’t want to make a […]

Git Clone

2020 VietMX 0

In Git, cloning is the act of making a copy of any target repository. The target repository can be remote or local. You can clone […]

Git Commit

2020 VietMX 0

It is used to record the changes in the repository. It is the next command after the git add. Every commit contains the index data and […]

Git Add

2020 VietMX 0

The git add command is used to add file contents to the Index (Staging Area).This command updates the current content of the working tree to the […]

Git Init

2020 VietMX 0

The git init command is the first command that you will run on Git. The git init command is used to create a new blank […]

Git Cheat Sheet

2020 VietMX 0

1. Git configuration Git configGet and set configuration variables that control all facets of how Git looks and operates.Set the name:$ git config –global user.name […]

Git command line

2020 VietMX 4

There are many different ways to use Git. Git supports many command-line tools and graphical user interfaces. The Git command line is the only place […]

Git Terminology

2020 VietMX 0

Git is a tool that covered vast terminology and jargon, which can often be difficult for new users, or those who know Git basics but […]

Git Tools

2020 VietMX 0

To explore the robust functionality of Git, we need some tools. Git comes with some of its tools like Git Bash, Git GUI to provide […]

Git Environment Setup

2020 VietMX 0

The environment of any tool consists of elements that support execution with software, hardware, and network configured. It includes operating system settings, hardware configuration, software […]