Installing webstorm
- Go to https://www.jetbrains.com/student/ and create an account.
- Click on "developer tools," and select "webstorm" under IDEs.
- Click download.
Git and Github
- Go to https://git-scm.com/downloads and click download.
- Go to https://github.com/join and create an account
- Open up WebStorm and go to settings.
- Under "version control," select "git".
- Click Test to make sure that Webstorm is connected to Git.
Branch: a separate version of the same code base.
Clone: a command that is used to create a copy of a specific repository or branch within a repository.
Commit: a command used to save changes to the local repository.
Fetch: a command that imports commits to local branches
GIT: a tool used for souce code management
Github: an open source version control system
Merge: a command that allows users to merge branches from Git.
Merge Conflict: occurs when Git is unable to automatically resolve differences in code between two commits.
Push: a command used to upload local repository content to a remote repository.
Pull: this command grabs any changes from the GitHub repository and merges them into a local repository.
Remote: a Git repository that is hosted on the Internet or another network.
Repository: a directory or storage space where projects live.