From 966cc697e71dbe002aa46acc7aef2d59fe24b773 Mon Sep 17 00:00:00 2001 From: Manav Rathi Date: Thu, 14 Mar 2024 16:35:36 +0530 Subject: [PATCH] [server] Move the server related gitattributes within that folder I mistakenly assumed that the gitattributes file can only be at the top level. However, this doesn't seem to be the case - I noticed this in a recent PR - https://github.com/ente-io/ente/pull/1104/files. And it is indeed documented: > When deciding what attributes are assigned to a path, Git .... .gitattributes > file in the same directory as the path in question. .. > > - https://git-scm.com/docs/gitattributes Ref: https://stackoverflow.com/questions/71784062/can-we-have-multiple-gitattributes-files-in-different-repo-subfolders --- .gitattributes => server/.gitattributes | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .gitattributes => server/.gitattributes (100%) diff --git a/.gitattributes b/server/.gitattributes similarity index 100% rename from .gitattributes rename to server/.gitattributes