What is the best practice for securing sensitive data, like passwords, in a Git repository?
- git encrypt
- git ignore
- git filter-branch
- git-crypt
The best practice for securing sensitive data in a Git repository is to use tools like git-crypt, which encrypts and decrypts files transparently during a git clone or git pull. This ensures that sensitive information remains secure.
Loading...
Related Quiz
- What Git command would you use to discard changes in a specific file before it has been staged?
- How does Git enable better handling of changes and revisions in large-scale projects?
- Which file in a Git repository typically contains a list of files to be ignored?
- The git ________ command helps in isolating the commit that introduced a bug.
- How does splitting a large repository into smaller ones affect Git performance?