How to remove files from git?

In this post, you’ll see how to remove file from git in different contexts. If you committed a file by mistake and pushed it to the remote origin, there are commands to delete the file.

Also, if you want to keep a file locally on your machine but delete it only from the remote origin, there is a command for it as well.

Last but not least, you also have a way to ignore the deleted file from the future commit & push.

Let’s explore them one by one.

How to delete files from Git

To delete a file locally, use the following command in your terminal:

git rm path_of_the_file

Replace the path_of_the_file with the actual path including the file name & extension such as vendor/app.php

remove a file from git local repository

A few examples:

git rm vendor/app.php

git rm script.js

This will remove the file from your local repo and also stage it for the next commit as you see in the screenshot below.

Staged changes automatically after file deletion in Git

Commit the deletion

After you delete the file locally, you must commit the changes as you see below.

git commit -m "deleted a file named app.php"

The commit message could be anything that is meaningful to you.

Push the deletion to the remote origin (repository)

If you want to remove the file from the remote origin as well, you have to push the changes.

git push origin master

Here I pushed the changes to the master branch and most of you will need to do the same. However, you also have the option to push the changes to a specific feature branch. For example git push origin another_branch_you_like

Anyways, after I push the changes to the remote origin, the file was also deleted from my GitHub repository.

deleted file from the remote origin (GitHub repository)

That means you can also remove a file/folder from your remote origin such as GitHub, Bitbucket, etc.

Summary of the commands that you used in this section:

git rm file_name
git commit -m "your custom message"
git push origin master

Sidenote: If you added all files to the stage by mistake, you can undo the git add -A. From there you can also unstage one or more specific files. There are a couple of handy options. If this is your case, you can check the detail in this post.

How to remove a folder from Git?

To remove a folder and its content, use the following command:

git rm -r folder_name

If I want to delete a folder named “assets”, the command will be the following:

git rm -r assets

Note that it will also delete all the other files & folders that live inside the folder (as you see in the screenshot below).

git rm -r command also deleted other files & folders inside

This is how you can delete folders on Git.

Just like the git rm command, git rm -r also stage the changes which are ready to commit.

So the next commands will be as follows (to push the changes to the remote origin):

git commit -m "Your custom message"

git push origin master

Sidenote: There is a way to remove or unstage a file after commit. If you made a commit by mistake and even if you pushed the commit, this is still possible to remove a file from the commit & also from the remote origin. For more details, please see this post.

How to remove a file from the Git repository but keep it in the working directory?

Let’s say you want to keep a file on your local machine (computer) but you want to delete it from the remote origin such as the GitHub repository. There is a command for it:

git rm --cached file_name

For example, I generally like to keep a file named “information.txt” on my project where I store personal information such as conversations with clients, to-do lists, etc. If I accidentally pushed this file and want to delete it from the remote origin but keep it locally, I can use the following command:

git rm --cached information.txt

How to untrack the deleted file in the future push?

But there is a catch!

If you add all files in the future using the git add -A, it will again add the “information.txt” file to the stage and you will find it in your repository as well (after pushing).

To get around this situation, you need to create a filed name “.gitignore” in the root directory. And also you have to include the file names that you want to ignore.

In my example, the “.gitignore” file will look like the following:

information.txt

That’s it!

How to create the “.gitignore” file?

If you try to create the “.gitignore” as you normally do while creating other files, you won’t be able to do it. And it will show you an error “You must type a file name.”

Error while creating a ".gitignore" file on computer

To get around this problem, you can create the file using your code editor (file – new). Also, you can create the file using the following command: touch .gitignore

Created gitignore file using command line

This will create the file named “.gitignore”

Why you may need to remove a file from Git?

There are a couple of real-world examples and use cases where you may also need to remove certain files & folders from Git. And these are just not limited to the following:

  1. Sensitive information: If you entered your payment processor or gateway-related information in a file, you must have to delete that file. And you have to reorganize it differently. Passwords, Database credentials, etc fall into this same category. For example, a “.env” (dot env) and “.gitignore” files can help you to solve this kind of issue.
  2. Large files: If you pushed or tracked large files and folders which are unnecessary to keep track of, you can remove them from git. For example, you don’t need to keep track of WordPress system folders/files such as wp-admin, wp-content, wp-config.php, plugins, etc.

Learn more about Git

Conclusion

When I first created my portfolio website using NodeJS, MongoDB, EJS, and after pushing it to live (Heroku), I discovered that I added my gateway information to a file. Also, the remote origin was a public repository. However, I was able to remove the file both from production & remote origin before happening anything bad with me. I was lucky enough!

Later I created a “.env” file to store such credentials and other environment variables. Also, I added this “.env” file in the “.gitignore.” This way, the website worked and I was on the safe side.

In this post, I showed how you can remove files from git (both locally & remote origin). Also, I showed you how to keep a file locally but delete it only on the GitHub repository. Additionally, I shared all the real-life experiences I came across which is related to this post and how you can be benefited from my fault & experience.