If you want to setup SSH trust between your local development machine & a project hosted on Github, please follow the process below & you will be able to setup it. This process is tested on Fedora/ Ubuntu but it should work on any Linux based OS. On your local Linux machine please generate a … Continue reading Set up SSH on Github
git
Ignore file permission changes in git
If the permission of a file changes inside a git repository, Git identifies that as a changed file even though you haven't changed that file. For example if you change a file's permission from 644 to 755, It will be shown as a modified file. If you don't want this to be shown as a modified … Continue reading Ignore file permission changes in git