[Solved] How do store sensitive files in my repo without tracking it? [duplicate]
The answer to the question in the subject line: How do store sensitive files in my repo without tracking it? is: you don’t. The reason is simple: Git builds new commits from whatever is in Git’s index. The index, a.k.a. the staging area, holds the copies of files that will go into your next commit. … Read more