Skip to content

Commit d9559b4

Browse files
committed
Remove leading slash in gitignore entry for
composer.lock The leading slash before "composer.lock" in the gitignore rules has been removed. This change ensures that the composer.lock file will be ignored correctly. The removal of the slash allows the gitignore rule to match the composer.lock file in all directories. Mismatched slashes could cause the composer.lock file to be included in the repository inadvertently, leading to potential version conflicts and inconsistency across deployments. No issues related to this change are mentioned. Notice that the reference to the specific gitignore file (".gitignore") is crucial in understanding the changes made.
1 parent 7aefa8c commit d9559b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
/vendor/
2-
/composer.lock
2+
composer.lock
33
.log

0 commit comments

Comments
 (0)