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…
BitBucket Server alloow you to host git repositories. By default bitbucket server have url in following format http://YOUR_IP_ADDR:7990/login To install SSL, first…
Some times when you transfer file to web server, you may need a differnt file permission for files to run in web…
When i push to get respo, i get error stdin: is not a tty Other than this error on push and pull,…
GIT is popular version control software, this work like a time machine. You can easily get older versions of code. Each changes…
Here is a PHP script, that pulls the latest code from Git Repository to your website.
Monitor file changes in your Website PHP Script to pull changes from GIT Repository How to protect .git folder using htaccess Git…
To see got commit log, type git log To see logs in one line, run git log –oneline To see one line…