JIYIK CN >

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

Add the file to the last commit in Git

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

This article outlines the process of adding a file to the last commit in Git. This comes in handy when you forgot to include a file in the last commit and don't want to create a new file.

Let’s get straight to the point.


Add the file to the last commit in Git

For the sake of a simpler context, we will simulate a situation where we need to add a file in the last commit.

We will edit some files in our local repository and add a new jyp.php file. This will be the file that we miss when we commit our changes.

Here is the commit history:

Git add files to last commit - commit history

After committing, let's take a look at the status of the index.

$ git status

Here are the results:

Git Add files to last commit - Index status

How do we add the jyp.php file to our Commit to add the file to commit?

There are two ways to go about this. Let's start with the more direct one.

First, we will add the missing files to commit. We will run the following:

$ git add jyp.php

All that's left is to add the file to the last commit, like this:

$ git commit --amend --no-edit

git commit --amendwill fix our commit. We use the --no-edit flag to commit without changing the commit message.


Alternative way to add files to last commit in Git

There is another way to do this, and it involves the git rebase command. To understand better, let’s look at an example.

We will run an interactive rebase to add the files to the Commit to add the files in our local repository.

$ git rebase -i HEAD~2

In the text editor, we will replace pick with edit on Commit to add the file to commit. Exit the text editor using :wq.

Git Add files to last commit - Interactive Rebase

We will create a new Load.txt file and add it to our commit while still in rebase mode. Add the file to the commit and run the git commit --amend command as follows:

$ git commit --amend --no-edit

To complete the rebase, we will run:

$ git rebase --continue

Git Add File to Last Commit - Successful rebase and update

If you have to update the remote repository, run the following command:

$ git push --force origin <branchname>

In summary, Git allows us to add files to the last commit when needed. Although we have covered two methods, they are similar and will give the same output.

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

Git search commit messages using the command line

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

We can format git log the command to show commits with commit messages that match a specified pattern. This makes it easier when you want to find a commit but your repository has hundreds of commits. This article will discuss the process of

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

Scan to Read All Tech Tutorials

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

Recommended

Tags

Scan the Code
Easier Access Tutorial