WebStorm is is an integrated development environment for coding in JavaScript and its related technologies, including TypeScript, React, Vue, Angular, Node.js, HTML, and style sheets.
•In Webstorm press (Ctrl+Alt+S) for system preferences.
•Select Version control Git. Enter the path to the git.exe
•In Webstorm press (Ctrl+Alt+S) for system preferences
•SelectAppearance and Behavior | System Settings | Passwords
Download from: https://www.jetbrains.com/student/
- Branch
- - Used to create, list, rename and delete branches.
- Clone
- - Used to grab a complete copy of another user's repository.
- Commit
- - Can be thought of as “safe” versions of a project—Git will never change them unless you explicitly ask it to.
- Fetch
- - Use git fetch to retrieve new work done by other people.
- GIT
- - Software for tracking changes in any set of files, usually used for coordinating work among programmers collaboratively developing source code during software development.
- Github
- - A provider of Internet hosting for software development and version control using Git.
- Merge
- - Merging combines your local changes with changes made by others.
- Merge Conflict
- - Occur when competing changes are made to the same line of a file, or when one person edits a file and another person deletes the same file.
- Push
- - Used to upload local repository content to a remote repository.
- Pull
- - a convenient shortcut for completing both git fetch and git merge in the same command.
- Remote
- - One piece of the broader system which is responsible for syncing changes.
- Respository
- - A repository contains all of your project's files and each file's revision history. You can discuss and manage your project's work within the repository.