JIYIK CN >

Current Location:Home > Learning > OPERATING SYSTEM > Git >

Git commit some files in one branch and make them available in another branch

Author:JIYIK Last Updated:2025/03/31 Views:

This article shows how to commit specific files in one branch and make those files available in another branch. Suppose you have a project and you create a feature branch to make some slight modifications to the code.

You modify and add new files on the feature branch, and you only need to commit the common files between the master and feature branches.


Git commit some files in one branch and make them available in another branch

Let’s look at an example.

git status

In the above picture, our feature branch has modified and newly added files. The modified files also exist in master .

We only want to commit the modified files and make them available in the master branch. Here is how we do it.

We will add the modified files first. Some people may add one file at a time, which still works but takes time and effort.

We can run git add -u to stage only the modified files and commit them.

git commit -m

Since we only need to make the file available in the master branch, we will use git cherry-pickthe merging command instead of merging branches.

Run git log --oneline command to get a list of all commits in the branch. Note down the SHA-1 or hash of the latest commit and switch to the master branch.

We can run git cherry-pickthe command as shown below.

$ git cherry-pick be8ed67

The above command should apply the changes in the commit to our master branch.

git cherry-pick

If you want to update the remote, you can run the git push command.

In short, it is possible to commit specific files and use them in another branch. git cherry-pickThe command allows us to apply changes from a specific commit.

Always remember to stash your changes when switching branches.

For reprinting, please send an email to 1244347461@qq.com for approval. After obtaining the author's consent, kindly include the source as a link.

Article URL:

Related Articles

Close the Git commit editor on Windows

Publish Date:2025/03/31 Views:62 Category:Git

In this article, we will discuss how to exit the Git commit editor. This can be a little tricky, especially if you are new to Git bash . Let's see how to exit the editor on Windows. Close the Git commit editor on Windows We will look at a t

Modifying a specific commit in Git

Publish Date:2025/03/31 Views:100 Category:Git

This article explains how we can modify a specific commit in Git. We may need to rename, compress, edit, or add files to a commit. The best way is to use the git rebase command in interactive mode . What do you think of this? Modifying a sp

Git overwrites Master with branch

Publish Date:2025/03/31 Views:79 Category:Git

Git is used to keep track of the source code we are working with; it also facilitates collaboration and helps us keep our projects in their current state. As we develop new features, their history should be at our fingertips as it is very h

Git Squash Commits

Publish Date:2025/03/31 Views:162 Category:Git

We will learn about Git squashing in this tutorial. The basic idea is to merge multiple consecutive commits into one. The main purpose is to compress many commits into a few related commits. Thus, doing so will make the git history look con

Merge remote branches into local branches in Git

Publish Date:2025/03/31 Views:134 Category:Git

This tutorial will merge a remote git branch into a local branch by cloning the remote repository and updating the changes locally. Merge remote branches into local branches in Git by cloning the remote repository and updating the changes l

Changing drives in Git Bash

Publish Date:2025/03/30 Views:57 Category:Git

This short article will discuss how we can use Git Bash to have a Unix-style command line environment in Windows operating system and run multiple commands in this terminal. Git Bash Git is a collection of command-line utilities created to

Adding a remote branch in Git

Publish Date:2025/03/30 Views:142 Category:Git

Git does not allow its developers to create new branches on remote repositories. But instead, we can push an already existing local branch, and after doing so, we can bring it to the remote repository using some Git commands. In every versi

Synchronize your local repository with a remote repository in Git

Publish Date:2025/03/30 Views:92 Category:Git

This article outlines the process of syncing your local repository with a remote repository. We will also see how to sync a GitHub branch with a remote repository on the command line. Synchronize your local repository with a remote reposito

Creating a remote repository from a local repository in Git

Publish Date:2025/03/30 Views:106 Category:Git

This article discusses the necessary steps to create a remote repository based on a local repository. This is ideal when you have a local repository that needs to be available on a remote or SSH-enabled server. Creating a remote repository

Scan to Read All Tech Tutorials

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

Recommended

Tags

Scan the Code
Easier Access Tutorial