Hacktoberfest 2026

Git Sandbox & Tutorials

Master the command line interactively with visual commit graphing.

Tutorial Roadmap

1

1. Run 'git init' to set up git repository

Copy and paste this into the terminal

2

2. Stage your edits by running 'git add .'

3

3. Create your first commit: git commit -m "Initial commit"

4

4. Create a new branch: git branch feature-ui

5

5. Checkout your branch: git checkout feature-ui

6

6. Stage & commit on branch: git commit -m "Add UI components"

7

7. Push changes to remote: git push origin feature-ui

git-sandbox@openveda:~ (main)
Welcome to the Interactive Git Sandbox!
Learn the PR workflow interactively. Type your git commands below.
Hint: Start by typing 'git init' to initialize your workspace.
$

Commit Tree Graph

No commits made yet. Make your first commit on standard git branches to generate nodes.