How to use Webstorm
-
Go to Jet Brains and request an access license
-
Download Webstorm off of the website
-
Download Git as a local program
-
Create and register a account with Github
-
Start connecting Github to Webstorm by opening Webstorm
-
In System Preferences, under versional control, select Git. Enter default path to git.exe
-
Set up Github password for Webstorm. In System Preferences, select appearance and behavior, System settings, and then Passwords.
8.Create a Repository in Github
9.Create Readme file in repository
-
In Webstorm, select File, New, Project from Version Control
-
Connect in Github Account
-
The repository from Github should show up
-
The Github repository is now displayable in Webstorm
-
Use commit to document your changes
-
Use push to save and update the repositories with your new changes
Glossary
Branch: Represents an individual line of development
Clone: The act of copying a repository from github and moving it to your local machine
Commit: A change to the repository
Fetch: To download the contents of a remote repository
GIT: A free and open source distributed version control system
Github: An internet hosting service for software development and version control using GIT
Merge: To combine code from one branch into another branch
Merge conflict: A conflict that occurs when you merge multiple branches that have competing commits.
Push: To update the remote branch with local commits
Pull: To fetch content from a remote repository and update the local repository to match it.
Remote: Refers to repositories that are hosted online on a server where it can be accessed by all associated workers at any time
Repository: Contains all of the project's files and each file's revision history