FarNet.GitKit 0.3.1

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package FarNet.GitKit --version 0.3.1
NuGet\Install-Package FarNet.GitKit -Version 0.3.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="FarNet.GitKit" Version="0.3.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FarNet.GitKit --version 0.3.1
#r "nuget: FarNet.GitKit, 0.3.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install FarNet.GitKit as a Cake Addin
#addin nuget:?package=FarNet.GitKit&version=0.3.1

// Install FarNet.GitKit as a Cake Tool
#tool nuget:?package=FarNet.GitKit&version=0.3.1

FarNet.GitKit

Far Manager git helpers based on LibGit2Sharp


About

Contents

GitKit is the FarNet module for git operations in Far Manager. GitKit uses LibGit2Sharp. Git is not needed for local tasks.

Project FarNet


Install

Contents

How to install and update FarNet and modules
https://github.com/nightroman/FarNet#readme


Commands

Contents

GitKit commands use the prefix gk. Commands may be typed and invoked in the Far Manager command line or using F11 / FarNet / Invoke. Commands may be also defined in the Far Manager user menu and file associations.

The command gk: without parameters prints the repository status. Other commands require parameters, one or more key=value pairs separated by semicolons, using the connection string format.

gk: [key=value] [; key=value] ...

Common parameters

  • Repo=<path>

    Specifies the existing repository path. Default: the current panel directory.

Panel commands

Operation commands

  • gk: init=<path>

    Creates repository, see Init command.

  • gk: clone=<url>

    Clones repository, see Clone command.

  • gk: commit=<message>

    Commits changes, see Commit command.

  • gk:

    Prints the repository status: summary of changes if any, the commit hash, local and remote branches with the same tip commit, the commit message.


Init command

Contents

Use this command in order to create a repository

gk: init=<path>

Parameters

  • IsBare={true|false}

    Tells to create a bare repository.


Clone command

Contents

Use this command in order to clone a repository

gk: clone=<url>

Parameters

  • Path=<path>

    Specifies the local path to clone into. Default: the current panel directory.

  • IsBare={true|false}

    Tells to clone a bare repository.

  • NoCheckout={true|false}

    Tells not to checkout after cloning.

  • RecurseSubmodules={true|false}

    Tells to recursively clone submodules.


Commit command

Contents

Use this command in order to commit changes

gk: commit=<message>

Set the message to "#" in order to compose it in the editor. If you also set CommentaryChar then the message will contain the commented out info about changes to be committed.

Parameters

  • All={true|false}

    Tells to stage all changes before committing.

  • AllowEmptyCommit={true|false}

    Tells to allow creation of an empty commit.

  • AmendPreviousCommit={true|false}

    Tells to amend the previous commit.

  • PrettifyMessage={true|false}

    Tells to prettify the message by stripping leading and trailing empty lines, trailing spaces, and collapsing consecutive empty lines. PrettifyMessage is ignored if CommentaryChar is set.

  • CommentaryChar=<char>

    The starting line char used to identify commentaries in the commit message. If set (usually to "#"), all lines starting with this char will be removed. CommentaryChar implies PrettifyMessage=true.

Examples

# commit all changes, compose a new message in the editor
gk: commit=#; All=true; CommentaryChar=#

# amend with all changes, modify the old message in the editor
gk: commit=#; All=true; CommentaryChar=#; AmendPreviousCommit=true

Panels

Contents

GitKit provides several panels for browsing and operating

Common panel keys and actions

  • CtrlA

    Opens the cursor item property panel. This operation requires FarNet.PowerShellFar.


Branches panel

Contents

This panel shows the repository branches, local and remote. The head branch is marked by *. Remote branches are marked by r.

The panel is opened by

gk: panel=branches

Keys and actions

  • Enter

    Opens the cursor branch Commits panel.

  • ShiftEnter

    Checkouts the cursor branch. For the local branch, makes it the head branch. For the remote branch, creates a new branch from it and makes it the head branch.

  • ShiftF5

    Creates a new branch from the cursor branch.

  • ShiftF6

    Renames the cursor branch.

  • F7

    Creates and checkouts a new branch from the head branch. Note that the head branch is with *, not the cursor. To copy the cursor branch, use ShiftF5.

  • F8, Del

    Safely deletes the selected local branches.

    Remote branches and local branches with unique local commits are not deleted this way. Use ShiftF8, ShiftDel in order to force delete.

  • ShiftF8, ShiftDel

    Forcedly deletes the selected remote and local branches.

    git.exe is used to delete remote branches.

  • Other keys

    See Panels for common keys and actions.

  • Other actions

    See Menu.


Commits panel

Contents

This panel shows the branch commits. Commits are shown by pages of 100.

The panel is opened from the branches panel or for the head branch by

gk: panel=commits

Keys and actions

  • Enter

    Opens the cursor commit Changes panel.

  • PgDn

    At the last shown commit, loads the next page commits.

  • PgUp

    At the first shown commit, loads the previous page commits.

  • Other keys

    See Panels for common keys and actions.

  • Other actions

    See Menu.


Changes panel

Contents

This panel shows the changed files.

The panel is opened from the commits panel or for the current changes by

gk: panel=changes

Keys and actions

  • Enter

    Opens the diff tool specified by the environment variable MERGE.

  • F3, F4

    Opens the diff patch in the viewer or editor.

  • Other keys

    See Panels for common keys and actions.


Contents

  • Compare branches

    Compares the cursor branch with the selected branch and opens the changes panel. If nothing is selected then the head branch is used.

  • Merge branch

    Merges the cursor branch into the head branch, with a confirmation dialog.

  • Compare commits

    Compares the cursor commit with the selected commit and opens the changes panel. If nothing is selected then the tip commit is used.

  • Create branch

    Creates a new branch from the cursor commit.

  • Help

    Shows GitKit help.


There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.2 110 4/20/2024
1.0.1 195 1/13/2024
1.0.0 211 11/19/2023
0.9.7 252 11/1/2023
0.9.6 168 10/27/2023
0.9.5 186 10/26/2023
0.9.4 187 10/25/2023
0.9.3 230 5/16/2023
0.9.2 133 5/3/2023
0.9.1 124 5/2/2023
0.9.0 140 5/1/2023
0.8.6 135 4/30/2023
0.8.5 133 4/29/2023
0.8.4 134 4/28/2023
0.8.3 143 4/27/2023
0.8.2 134 4/27/2023
0.8.1 136 4/26/2023
0.8.0 131 4/26/2023
0.7.8 145 4/24/2023
0.7.7 140 4/23/2023
0.7.6 154 4/23/2023
0.7.5 150 4/23/2023
0.7.4 136 4/21/2023
0.7.3 147 4/21/2023
0.7.2 154 4/21/2023
0.7.1 159 4/19/2023
0.7.0 153 4/19/2023
0.6.5 182 4/18/2023
0.6.4 142 4/18/2023
0.6.3 149 4/18/2023
0.6.2 158 4/17/2023
0.6.1 155 4/16/2023
0.6.0 159 4/16/2023
0.5.3 162 4/15/2023
0.5.2 163 4/15/2023
0.5.1 154 4/15/2023
0.5.0 165 4/14/2023
0.4.0 165 4/13/2023
0.3.2 160 4/12/2023
0.3.1 165 4/12/2023
0.3.0 159 4/12/2023
0.2.4 156 4/11/2023
0.2.3 168 4/11/2023
0.2.2 162 4/11/2023
0.2.1 158 4/11/2023
0.2.0 161 4/11/2023
0.1.0 165 4/10/2023
0.0.3 163 4/9/2023
0.0.2 162 4/9/2023
0.0.1 158 4/8/2023