Limyrx Studio IDE

Git & GitHub

Limyrx Studio IDE integrates git operations directly into the UI. The changes panel, commit dialog, and GitHub workflows let you manage version control without leaving the IDE.

Changes Panel

The changes panel shows all modified, added, and deleted files in your working tree. Files are grouped by status:

  • Modified - changed since last commit
  • Staged - added to the staging area
  • Untracked - new files not yet tracked

Click any file to view a side-by-side or unified diff.

Committing

Stage files with a click, write a commit message, and commit. The IDE supports:

  • Conventional commits with structured messages
  • AI-generated commit messages based on the diff
  • Co-author attribution
  • Signing commits with GPG/SSH

Branching

Create, switch, merge, and delete branches from the git panel. The visual branch graph shows your commit history across all branches.

GitHub Integration

Authenticate with GitHub to:

  • Push and pull directly from the IDE
  • Create pull requests from a branch
  • View PR status checks
  • Review and merge PRs

See GitHub Issues & PRs for the full workflow.

Git Configuration

Configure git identity, signing keys, and remote URLs from Settings. Multiple Git Identities are supported for different projects.

See Also