![]() |
Git is a command line tool which is widely used for changes in source code during software development processes. It was developed by the Linux Torvalds in 2005 to manage the Linux Kernel development. This post will show the difference between the .gitignore and .gitkeep files. What is a .gitignore file?It is a text-based file in Git repositories that specifies intentionally tracked files and directories that Git must ignore. Sometimes developers don’t want to add some sensitive file in Git history. There, this file comes in the picture. The developer specifies those files in this file to ignore these files in the git history. Syntax:The syntax of .gitignore file is very simple, developers have to specify files, directories, or patterns to ignore. Anything you write in .gitignore file will be ignored by the Git system. Example: The “secrets.txt” file never commit in Git repository
Output![]() Benefits of “.gitignore” filesHere’s is the some benefits of “.gitignore” files
What is a .gitkeep file?The ‘.gitkeep’ file is not officially git feature. It is a convention used to in Git repositories to ensure that empty directories must be tracked by the Git. By Design Git does not track the empty directories. It can be problematic sometimes when a developer wants to make structure of the project. Example : Create a file using the following command in your directory.
![]() Adding gitkeep file in git repository Benefits of ‘.gitkeep’ fileHere’s is the some benefits of the ‘.gitkeep’ file
Difference between .gitignore and .gitkeep files?
ConclusionIn Git both files server different purposes. However, .gitkeep is not feature of Git Version Control System. It helps developer to add empty directory for tacking in Git and gitignore file used for untrack important or secrets files in Git history. Together, they maintain clean and efficient code in Git and also increase the productivity of the Developer. |
Reffered: https://www.geeksforgeeks.org
Git |
Type: | Geek |
Category: | Coding |
Sub Category: | Tutorial |
Uploaded by: | Admin |
Views: | 14 |