Skip to content

Latest commit

 

History

History
 
 

docs

GitSavvy Documentation

You've found GitSavvy's online documentation.

All documentation is in markdown. Beyond what you might expect, if you see a link to a different page, you can browse to that page by pressing SUPER-Enter while the link is under your cursor (CTRL-Enter on Windows).

To return to the previous page, press SUPER-Backspace (CTRL-Backspace on Windows).

If you run into any issues not addressed here, please feel free to open an issue and ask for help!

Highlighted Features

Command Palette

High-level commands

(Un)Staging changes

Committing

Branch management

Tag management

Modifying history

Interacting with remotes

History

Ignoring files

Debug

Special Views

GitHub Integration

Custom Commands

If you have the need, you can add your own commands that take advantage of GitSavvy's access to your repo. To do so, create a new User.sublime-commands file in your User Package directory. Then, add an entry like so:

[
    {
        "caption": "git: pull --rebase",
        "command": "gs_custom",
        "args": {
            "output_to_panel": true,
            "args": ["pull", "--rebase"],
            "start_msg": "Starting pull (rebase)...",
            "complete_msg": "Pull complete."
        }
    }
]

For more information see custom commands documentation

git-flow Support