Answer by channel for How easy is it to hide adding a file to a git repository
Building on what has been said, reading commit logs is everything however there are ways to trick the end user and having them download files that are not obvious to them. One way is to add files to...
View ArticleAnswer by Stephen Touset for How easy is it to hide adding a file to a git...
Your developers are correct in that any changes to the repository will be reflected by a new commit. Previous commits cannot be modified without all developers being notified of a serious conflict when...
View ArticleHow easy is it to hide adding a file to a git repository
Here's the scenario... I have a git repository on a server that may have been compromised. My development team say that they can trust the files in the directory that houses the git repository because...
View ArticleAnswer by cjs for How easy is it to hide adding a file to a git repository
...because all commits (diffs) and new files being added to the repository are checked and signed off by the repository 'owner'...It's important to remember that Git does not store diffs of any kind....
View Article