JIYIK CN >

Current Location:Home > Learning > OPERATING SYSTEM >

All

Git Cherry-Pick and Merge Workflow

Publish Date:2025/04/02 Author:JIYIK Category:Git

This article discusses the workflow of git cherry-pick and git merge commands. We use these two commands to integrate changes from one branch to another branch in the Git version control system. However, some scenarios favor the use of one...

Full

Git merge test run

Publish Date:2025/04/02 Author:JIYIK Category:Git

This article will discuss resolving git merge conflicts through git commands. Overview Git has many features which developers can use easily and solve their problems. Among these features of git, merging is the basic aspect that every devel...

Full

Recovering a conflicting Git merge

Publish Date:2025/04/02 Author:JIYIK Category:Git

This article explains the revert command when a merge conflict occurs git merge . We will also take a quick look at how to undo a git merge that was successful and has been pushed to a remote repository. Recovering a conflicting Git merge I...

Full

Merge the development branch into Master in Git

Publish Date:2025/04/02 Author:JIYIK Category:Git

This article provides an overview of merging a development branch into the master branch. Often we find ourselves creating a branch outside of the master branch for development. Once we are happy with the changes, we can merge them into mas...

Full

Complete the merge after resolving conflicts in Git

Publish Date:2025/04/02 Author:JIYIK Category:Git

This article describes the process of completing a merge after resolving merge conflicts in Git. We will go through the merge steps, resolve the conflicts, and complete the merge. Complete the merge after resolving conflicts in Git For a si...

Full

Selectively merge changes from different branches in Git

Publish Date:2025/04/02 Author:JIYIK Category:Git

This article will discuss merging specific changes from one branch to another. As we know, when merging branches, Git merges all files without exception. You may find yourself in a scenario where you have some commits in one branch and you...

Full

Git Undo Merge

Publish Date:2025/04/01 Author:JIYIK Category:Git

In this article, we will see how to undo a merge in Git. In Git, we merge one branch with another to integrate the changes from the other branch into the current branch HEAD . Sometimes, we may want to undo such a merge. We can use the Git...

Full

Undoing a Git reset using the --hard flag

Publish Date:2025/04/01 Author:JIYIK Category:Git

Sometimes you may want to reset your changes to a specific commit. Suppose you chose git reset --hard commit id the -p way to reset your changes but forgot --hard the -p flag would discard uncommitted changes on your local system and later...

Full

Revert to a previous commit in a Git repository

Publish Date:2025/04/01 Author:JIYIK Category:Git

In this article, we will learn how to revert to a previous commit in a Git repository. Git is a version control system used in collaborative development environments to track changes made to files. Git is used to capture snapshots of file c...

Full

Git resets local branch to branch in remote repository

Publish Date:2025/04/01 Author:JIYIK Category:Git

This article will show how to reset a local branch in a local repository to resemble a branch on a remote repository in git. Alternatively, we can discard any untracked changes in the local repository. Often, we have a local branch with som...

Full

Resetting HEAD in Git

Publish Date:2025/04/01 Author:JIYIK Category:Git

Git helps us in many ways when working with shared repositories. We can perform many functions using Git as we can create a new branch, merge a branch, delete a branch as per our requirements. These operations can be done using multiple Git...

Full

Use Git Prune command to clean up Git repository

Publish Date:2025/04/01 Author:JIYIK Category:Git

In this article, we will discuss git prune the command and its uses. We know that Git is very careful with our data. When we delete data like commits, Git doesn't easily lose them. This can lead to stale data piling up in our machines. This...

Full

Export Git Project

Publish Date:2025/04/01 Author:JIYIK Category:Git

In this article, we will discuss exporting a project in Git. We use git archive the command to create an archive file of our Git repository. Such a file combines several files into one. Archive files are convenient for sharing between devel...

Full

Scan to Read All Tech Tutorials

Social Media
  • https://www.github.com/onmpw
  • qq:1244347461

Hottest

Tags

Scan the Code
Easier Access Tutorial