I am using GIT version control.
Here is what I want to accomplish
- Customer A identifies a defect in the product and logs an issue#1234
- Developer wants to know the file (sample.sql) on customer A instance before fixing it. The same file name may have high water mark content with other customer B, may be because of some other issue#5678.
- Its possible that customer A may not have applied the issue#5678
- Effectively, developer wants to know exact file definition of customer A (sample.sql) in order to provide an accurate fix.
My Questions
- Since version information is not stored in header, is there ay other way to address such issues?
- At a file level, there is no git commit information. Can any other way like tagging all the files and storing it customer instance as a filenaifest help me address this?