I had a repo on github that was set to private because the database connection details were exposed in the code. I recently added some code which moved the sensitive database connection details to an outside file so that the repo could be changed from private to public. However, after setting the repo to public … Continue reading Git: How to clear github repo commit history
GIT
Git: How to create and use a .gitignore file on Windows
If you have a project that you have git enabled, but you don’t want git to track all of the files in the project folder (perhaps because you don’t want all files to be uploaded to github), you can tell Git to ignore certain files, file types, or sub-directories by creating a “.gitignore” file in … Continue reading Git: How to create and use a .gitignore file on Windows
How to use Git and Github
What is Git? According to the GIT software website: https://git-scm.com/ Git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency. Git is easy to learn and has a tiny footprint with lightning fast performance. It outclasses SCM tools like Subversion, … Continue reading How to use Git and Github