Skip to content

if0390/A02

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 

Repository files navigation

A02

Part 1: Setting up git/webstorm/github

Step 1: Step 1: Install Git

  1. Download Git from the official website: Git Downloads.
  2. Follow the installation instructions for your operating system.

Step 2: Configure Git

  1. Open a terminal.
  2. Enter your username as 'git config --global user.name "Your Name"'.
  3. Enter your email address: 'git config --global user.email "your.email@example.com"'.

Step 3: Create a GitHub Account

  1. Go to https://github.com/ and sign up for a new account.

Step 4: Download and Install WebStorm

  1. Go to the JetBrains website: JetBrains.
  2. Download the WebStorm installer.
  3. Run the installer.

Step 5: Set Up a Project in WebStorm

  1. Open WebStorm.
  2. Create a new project.

Step 6: Connect WebStorm to GitHub

  1. Open your project in WebStorm.
  2. Go to "VCS" in the top menu.
  3. Select "Share Project on GitHub."
  4. Log in to your GitHub account.
  5. Complete the repository creation on GitHub.

Part 2: Glossary

  • Branch: A parallel version of the code, allowing for independent development.
  • Clone: Create a copy of a repository on your local machine.
  • Commit: Save changes to the local repository.
  • Fetch: Retrieve changes from a remote repository without merging.
  • Git: A distributed version control system.
  • GitHub: A web-based platform for hosting and collaborating on Git repositories.
  • Merge: Combine changes from different branches.
  • Merge Conflict: A situation where Git is unable to automatically resolve differences between branches.
  • Push: Send committed changes to a remote repository.
  • Pull: Retrieve changes from a remote repository and merge them into the current branch.
  • Remote: A repository hosted on a server.
  • Repository: A storage location for a project's files and version history.

References:

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors