Version Control System is how one tracks changes, modifications, and updates to source files over time. Creating a history of changes for a project over time.
Version control is a system that records changes to a file or set of files over time so that you can recall specific versions later.
Version control software keeps track of every modification to the code in a special kind of database. If a mistake is made, developers can turn back the clock and compare earlier versions of the code to help fix the mistake while minimizing disruption to all team members.
Used for:
Documentation
Code
Configuration
Collaboration
Other Names Include:
Source Control Management (SCM)
Version Control Software
Revision Control Software
Fetching and Displaying Weather Data By - ABDUL YESDANI Objective: This document will help you prepare for the workshop on building a responsive weather app using React. You will learn the basics of React, how to use APIs, and how to work with data fetched from an API. By the end of the workshop, you’ll build a simple weather app that fetches real-time weather data. 1. What is React? React is a JavaScript library used to build user interfaces, especially for single-page applications. It lets you create components, which are reusable, isolated pieces of code that define a part of your user interface. Key Terms Component : Think of components as building blocks for your app. Each part of your app’s UI can be a component, like a button, form, or navigation bar. JSX : A syntax extension for JavaScript, which looks a lot like HTML. JSX is used to describe what the UI should look like. State : Data that controls what gets rendered on the screen. State can change over time, like inpu
These slides are very easy to understand and therefore very helpful.
ReplyDelete