Find who added a file to git repo
To find which user and when a file gets committed to a git repository, you can use the command git log –diff-filter=A…
To find which user and when a file gets committed to a git repository, you can use the command git log –diff-filter=A…
On CentOS, when i run git commands like “git status” or “git diff”, the result is shown with out any color. On…
When working with git, to avoid accidental commit to wrong branch, it will be better if terminal show the branch name you…
Git hook allow you to perform tasks when some changes happen on a git repository. To automatically push code when you make…