My friend and I are developing an application for Django and using git.
While working, we create fake accounts on our website, log in, upload content to the database, etc. For testing purposes. Each time we merge branches, we get merge conflicts in our database file . The database file is in the repository, and since we are testing separately, local copies of the file evolve differently.
How to prevent tracking of a database file so that each of us can store our local copies?
Thanks to the following, we were able to avoid using the local path:
#
What would be ideal is something like:
#
How can we prevent the transfer of files in our database?
source share