You must already know about GitHub specially if you are a Software Engineer. Ok, that’s great to know that you know. Now let’s talk about as a PHP developer how we can use GitHub actions or workflows (group of actions) to automate our CI job. It was very much expected feature from GitHub. What is GitHub actions & workflow? You got me right. I need to tell you this first otherwise this article seems useless to you unless you have …
Tag: GitHub
Everybody loves open source software, tools, libraries for developing software. It saves costs, provides support from that community and we can get lots of help and even we can contribute to the tools we already love. I assume you are already familiar with GitHub. But let me introduce it again. After that I will explain about GitHub security alert feature and how to activate it for your repository. What is GitHub GitHub is a platform where anybody can host source …
Git is a version control system that track your changes in your specific files. You can track changes, add commit on every changes, undo/redo the changes to a certain stage. It’s very useful version control system for software engineers. Writing a large software without Git can’t be imaginable. Most importantly it’s very difficult to develop a single software by multiple software engineer as a team. You need to track who is changing where and who is adding new feature. You …