ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Gitk

by gerardroche ALL

Gitk integration.

Labels git

Details

Installs

  • Total 182
  • Win 71
  • Mac 42
  • Linux 69
Apr 30 Apr 29 Apr 28 Apr 27 Apr 26 Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17
Windows 0 0 0 1 0 0 0 0 0 0 0 0 2 1 0 1 0 0 1 0 1 0 0 2 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 1 0 0 0 1 0 0 0 1 1 1 0 0 1 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 0 0 0
Linux 0 0 0 0 2 1 0 0 2 0 0 0 0 1 0 2 1 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 1 0 0 0 2 0 1 2

Readme

Source
raw.​githubusercontent.​com

Gitk

Enhance your Sublime Text experience with seamless gitk integration.

Provides commands to launch gitk from within Sublime Text.

Installation

Step 1: Install gitk

Before you get started, make sure you have gitk installed on your system. To install, you'll need to follow the instructions specific to your operating system:

On Windows:

  1. Download the Git for Windows installer from the official website: Git for Windows.

  2. Run the installer and follow the installation steps. During installation, you can choose the components to install. Ensure that the “Git Bash Here,” “Git GUI Here,” and “Gitk” options are selected.

  3. Complete the installation, and Gitk will be installed along with Git on your Windows system.

On macOS:

  1. You can install Gitk on macOS using a package manager like Homebrew. If you don't have Homebrew installed, you can install it by following the instructions on the Homebrew website: Homebrew.

  2. Once Homebrew is installed, open your terminal and run the following command to install Gitk:

brew install gitk
  1. Homebrew will download and install Gitk and its dependencies.

On Linux (Ubuntu/Debian):

  1. Open a terminal.

  2. Use the package manager to install Gitk. For Ubuntu and Debian-based systems, you can use apt-get:

sudo apt-get update
   sudo apt-get install gitk

On Linux (Fedora/RHEL/CentOS):

  1. Open a terminal.

  2. Use the package manager to install Gitk. For Fedora, RHEL, or CentOS-based systems, you can use dnf or yum:

For Fedora:

sudo dnf install gitk

For RHEL/CentOS:

sudo yum install gitk

After following these steps, Gitk should be successfully installed on your system. You can verify the installation by opening a terminal and running the following command:

gitk --version

This command should display the version information of Gitk, confirming that it's installed and ready to use.

Step 2: Install the Gitk Package

Method 1: Using Package Control

  1. Open Sublime Text.
  2. Access the Command Palette by pressing Ctrl+Shift+P (Windows/Linux) or Cmd+Shift+P (macOS).
  3. Type “Package Control: Install Package” and press Enter.
  4. In the input field, type “Gitk” and select it from the list of available packages.

Method 2: Manual Installation

  1. Visit the Gitk GitHub repository.
  2. Click on the “Code” button and choose “Download ZIP.”
  3. Unzip the downloaded file.
  4. In Sublime Text, navigate to Preferences -> Browse Packages... to access the Packages folder.
  5. Copy the “Gitk” folder from the unzipped archive and paste it into the Packages folder.

Method 3: Manual Git Repository Installation

  1. Open a terminal or command prompt.
  2. Go to the Sublime Text Packages directory based on your operating system:
    • Windows: %APPDATA%\Sublime Text\Packages
    • macOS: ~/Library/Application Support/Sublime Text/Packages
    • Linux: ~/.config/sublime-text/Packages
  3. Clone the Gitk plugin repository directly into the Packages directory using Git:
git clone https://github.com/gerardroche/sublime-gitk.git Gitk

Commands

Use these commands to launch gitk.

Command Description
Gitk Launch gitk for the current repository.
Gitk –all Open gitk --all for the current repository.

NeoVintageous mappings

NeoVintageous is a Vim emulator for Sublime Text.

  1. Open the Command Palette: Command Palette → NeoVintageous: Open neovintageous file.

  2. Add your preferred mappings.

Example

nnoremap <leader>oa :Gitk all=true<CR>
   nnoremap <leader>ok :Gitk max-count=200 all=true date-order=true<CR>
  1. To apply the changes, reload the neovintageousrc from the Command Palette: Command Palette → NeoVintageous: Reload neovintageous file.

Changelog

See CHANGELOG.md.

License

Released under the GPL-3.0-or-later License.