Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
# Install Git: https://git-scm.com/downloads # Check version: git --version # First-time setup (do this once) git config --global user.name "Your Name" git config --global user.email "you@example.com" git config --global core.editor "code --wait" # VSCode as editor # Initialize a repository git init my-project cd my-project # Or clone an existing repository git clone https://github.com/user/repo.git git clone https://github.com/user/repo.git my-folder # Check Git configuration git config --list
Result
Open