Showing posts with label GIT. Show all posts
Showing posts with label GIT. Show all posts

Tuesday, 22 October 2024

Create first Github Action

 What is Git hub action?

It use for continues integration and continues deployment,  There are certain criteria it need to full fill and do the quality check before this deployment of code that can be happen by github actions.




Github Action Terminology
Workflow : it  is an Yml file, it contains:
  • Events
  • Job
  • Runners
  • Steps
  • Actions



Github Action Events

  • Events are trigger for workflow, common events like some one pushes the code into the repository.
  • When the events occurs, it will run all the jobs mentioned into the workflow.












Sunday, 18 June 2017

GIT Tutorials for Begineers

1.       What is version control and why we need version controls?
-          Version controls are managing the changes on document or files which you are working throughout the application.
-          Whenever you are doing the check-in of your application it will create the snapshots of application and create the version for your files or folders that you worked.
-          You can go back and forth to the different version.


2.       Why do we need of version controls?
-          It uses for collaboration everyone is working on the different task than through version controls  all the code can combined together.