Git Diff Git diff is a command-line utility. It’s a multiuse Git command. When it is executed, it runs a diff function…
git vs svn
-
-
Git Environment Setup The environment of any tool consists of elements that support execution with software, hardware, and network configured. It includes…
-
Git Reset The term reset stands for undoing changes. The git reset command is used to reset the changes. The git reset…
-
Git Fetch Git “fetch” Downloads commits, objects and refs from another repository. It fetches branches and tags from one or more repositories.…
-
Git Revert In Git, the term revert is used to revert some changes. The git revert command is used to apply revert…
-
Git Flow / Git Branching Model Git flow is the set of guidelines that developers can follow when using Git. We cannot…
-
Git Rm In Git, the term rm stands for remove. It is used to remove individual files or a collection of files.…
-
Git Fork A fork is a rough copy of a repository. Forking a repository allows you to freely test and debug with…
-
Git Squash In Git, the term squash is used to squash the previous commits into one. It is not a command; instead,…
-
Git Head The HEAD points out the last commit in the current checkout branch. It is like a pointer to any reference.…