Git extensions для linux

Getting Started¶

Installation¶

The single click Git Extensions installer can be found here.

Choose the options to install.

Choose the SSH client to use. PuTTY is the default because it has better Windows integration.

Installation (Linux) (2.5x only)¶

You can watch this video as a starting point: Install Git Extensions on Ubuntu 11.04

This section only covers mono installation, you should have git installed in your Linux at this point. Please refer to https://git-scm.com/download/linux

First, make sure you have the latest mono version on your Linux. This section will cover installation of Mono 4.6 on a Linux.

Install mono latest version. You can always check for this here: http://www.mono-project.com/download/#download-lin

If everything went okay, you should open your terminal and check mono version:

Now download Git Extensions latest version from https://github.com/gitextensions/gitextensions/releases/latest. Remember to select the appropriate package otherwise you could have problems.

Browse into the folder where you extracted the package and just run mono command, like the example below:

Installation (macOS) (2.5x only)¶

This section only covers mono installation, you should have git installed in your Mac at this point. Please refer to https://git-scm.com/download/mac

First, make sure you have the latest 32-bit mono version on your Mac. This section will cover installation of Mono 4.6 on a Mac.

Download mono latest version. You can always check for this here: http://www.mono-project.com/download/#download-mac

After you have completed the download, you will see a .dmg file. Double click it to open the package.

Inside the .dmg file you will have MonoFramework-.pkg. Double click to start the installation process.

Follow the wizard until it’s completion.

If everything went okay, you should open your terminal and check mono version:

Now download Git Extensions latest version from https://github.com/gitextensions/gitextensions/releases/latest. Remember to select the appropriate package otherwise you could have problems.

Browse into the folder where you extracted the package and just run mono command, like the example below:

This is the minimal setup you need in order to run Git Extensions.

Troubleshooting Mac Installation¶

  1. If your Git Extensions crashes with an exception that a font is missing (generic sans serif), you probably can fix this by installing Xquartz. This is a version of the X.Org X Windows System that runs on OS X. I am not sure what the side effects are. This can be installed from here: http://xquartz.macosforge.org/landing/
  2. If Git Extensions still crashes because it is unable to load a plugin, empty the plugins folder.

Settings¶

All settings will be verified when Git Extensions is started for the first time. If Git Extensions requires any settings to be changed, the Settings dialog will be shown. All incorrect settings will be marked in red. You can ask Git Extensions to try to fix the setting for you by clicking on it. When installing Git Extensions for the first time (and you do not have Git already installed on your system), you will normally be required to configure your username and email address.

The settings dialog can be invoked at any time by selecting Settings from the Tools menu option.

Читайте также:  Dreamcast emulator mac os

For further information see Settings .

Start Page¶

The start page contains the most common tasks, recently opened repositories and favourites. The left side of the start page (Common Actions and Recent Repositories) is static. The right side of the page is where favourite repositories can be added, grouped under Category headings.

Recent Repositories can be moved to favourites using the repository context menu. Choose Move to category / New category to create a new category and add the repository to it, or you can add the repository to an existing category (e.g. ‘Currents’ as shown below).

A context menu is available for both the category and the repositories listed underneath it.

Entries on Category context menu

Move Up Move the category (and any repositories under it) higher on the page.
Move Down Move the category (and any repositories under it) lower on the page.
Remove Remove the category (and any repositories under it) from the page. Note: Git repositories are not physically removed either locally or remotely.
Edit Shows the Start Page settings window where both category and repository details can be modified.

Entries on repository context menu

Move to category Move the repository to a new or existing category.
Move up Move the repository higher (within the category).
Move down Move the repository lower (within the category).
Remove Remove the repository from the category. Note: the repository is not physically removed either locally or remotely.
Edit Shows the Start Page settings window where both category and repository details can be modified.
Show current branch Toggles the display of the branch name next to the repository name. This identifies the currently checked out branch for the repository.

To open an existing repository, simply click the link to the repository under Recent Repositories or within the Categories that you have set up, or select Open repository (from where you can select a repository to open from your local file system).

To create a new repository, one of the following options under Common Actions can be selected.

Clone repository¶

You can clone an existing repository using this option. It displays the following dialog.

The repository you want to clone could be on a network share or could be a repository that is accessed through an internet or intranet connection. Depending on the protocol (http or ssh) you might need to load a SSH key into PuTTY. You also need to specify where the cloned repository will be created and the initial branch that is checked out. If the cloned repository contains submodules, then these can be initialised using their default settings if required.

There are two different types of repositories you can create when making a clone. A personal repository contains the complete history and also contains a working copy of the source tree. A central repository is used as a public repository where developers push the changes they want to share with others to. A central repository contains the complete history but does not have a working directory like personal repositories.

Clone SVN repository¶

You can clone an existing SVN repository using this option, which creates a Git repository from the SVN repository you specify. For further information refer to the Pro Git book.

Clone Github repository¶

This option allows you to

  1. Fork a repository on GitHub so it is created in your personal space on GitHub.
  2. Clone any repositories on your personal space on GitHub so that it becomes a local repository on your machine.

You can see your own personal repositories on GitHub, and also search for repositories using the Search for repositories tab.

Читайте также:  Как отключить синтезатор windows

Create new repository¶

When you do not want to work on an existing project, you can create your own repository using this option.

Select a directory where the repository is to be created. You can choose to create a Personal repository or a Central repository.

A personal repository looks the same as a normal working directory but has a directory named .git at the root level containing the version history. This is the most common repository.

Central repositories only contain the version history. Because a central repository has no working directory you cannot checkout a revision in a central repository. It is also impossible to merge or pull changes in a central repository. This repository type can be used as a public repository where developers can push changes to or pull changes from.

Источник

How to install GitExtensions in Ubuntu

For now I have Ubuntu 15.10 system with mono installed. To run and use GitExtensions on linux I have installed mono runtime (that’s more important, at least libmono-system-windows-forms library needed).

Installing GitExtensions

To install GitExtensions actually a few steps needed:

download GitExtensions zip archive for mono from sourceforge. No matter what tool you use. I used the browser for that.

extract archive content to /opt/GitExtensions directory. You can select arbitrary directory you want, but it’s seems more appropriate place for user installed software in linux.

edit gitext.sh file. This file already contains correct command, just supply GitExtensions.exe with full path. File should contains:

add execution rights to gitext.sh :

make symbolic link to /usr/local/bin directory:

Now I could type gitext from arbitrary directories where I want to run GitExtensions from.

Troubleshooting

(2017-01-19) Mono runtime errors about settings

If you got errors from mono runtime, you could use following gitext.sh :

Some versions of mono runtime has had some bugs and therefore GitExtensions can serialize window position in wrong format. rm command will delete wrong settings completely and you will be able to run GitExtensions.

But it seems like this mono bug has fixed now.

(2019-01-12) Failed to load plugin GitExtensions/Plugins/Bitbucket.dll

I’ve just updated to latest Mono v5.18.0.225 and got fatal error:

I’ve tried to update GitExtensions to latest version GitExtensions-2.51.05-Mono.zip but this didn’t helps.

To troubleshoot this issue I’ve just deleted Plugins/Bitbucket.dll file and error gone. Personally I don’t use Bitbucket plugin functionality therefore it’s fine fore me.

Summary

Now I have wonderful tool in my linux toolbox to work with git. Yes, it’s still important to me to be able to work with git through command line, but sometimes real GUI may be more convenient. I prefer it for viewing commits history, for example.

If you like this post, consider supporting me on liberapay

Источник

Git Extensions

Git Extensions is a standalone UI tool for managing git repositories. It also integrates with Windows Explorer and Microsoft Visual Studio (2015/2017/2019).

The new Git Extensions Manual repository

Git Extensions plugin providing integration with Gerrit Code Review.

ICSharpCode.TextEditor for WinForms

basic c# github api

Git Extensions is a standalone UI tool for managing git repositories. It also integrates with Windows Explorer and Microsoft Visual Studio (2015/2017/2019).

35 Updated Oct 10, 2021

ICSharpCode.TextEditor for WinForms

0 Updated Oct 10, 2021

Git Extensions plugin providing integration with Gerrit Code Review.

4 Updated Oct 7, 2021

Git Extensions Visual Studio extensions

1 Updated Oct 3, 2021

An example, how to embed http://conemu.github.io/ into another graphical application

0 Updated Sep 10, 2021

basic c# github api

Читайте также:  Мазила для линукса установить

1 Updated Aug 7, 2021

EasyHook — The reinvention of Windows API Hooking

0 Updated May 9, 2021

Package manager for downloading and installing Git Extensions plugins.

0 Updated Mar 27, 2021

The new Git Extensions Manual repository

0 Updated Mar 19, 2021

0 Updated Feb 25, 2021

People

Top languages

Most used topics

You can’t perform that action at this time.

You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session.

Источник

Git extensions для linux

Git Extensions is a standalone UI tool for managing git repositories. It also integrates with Windows Explorer and Microsoft Visual Studio (2015/2017/2019).

Have a question? Come and talk to us: or send us a tweet

Windows only
Runtime environment MS Windows 7SP1+ // MS .NET 5.0
Development MS VS 2019 (v16.9+), C# 9 // VC++ (inc. ATL for x86/x64 for installer)
Current dev status
Translations
Windows only
Runtime environment MS Windows 7SP1+ // MS .NET Framework 4.6.1+
Development MS VS 2019 (v16.8+), C# 9 // VC++ (inc. ATL for x86/x64 for installer)
Current dev status

For more details please refer to versions comparison.

Windows Linux/Mac
Runtime environment MS Windows 7SP1+
MS .NET Framework 4.6.1+
Linux / Mac (possible)
Mono 5.0+ (Recommended 5.14.0 or later)
Development MS VS 2015/2017, C#6 MonoDevelop / JetBrains Rider / MS VS for Mac
Current dev status
Translations

Download it now or install it with Chocolatey or AppGet.

If you want to update a portable version, you should delete all the files and the subfolders from the existing folder except:

  • GitExtensions.settings
  • WindowPositions.xml
  • User defined themes in folder Themes

This extension allows users to Browse with Git Extensions from the Explorer and the Editor. It supports a single folder and workspaces. Nothing fancier.

[ Download ] from the Marketplace or install via VS Code
NB: Please direct all discussions about this extension to its own repo.

Project maintainers pledge to foster an open and welcoming environment, and ask contributors to do the same.

For more information see our code of conduct.

  • We thank all the people who contribute, the project exists because of you
  • We thank JetBRAINS for ReSharper licenses
  • We thank SemanticMerge for licenses
  • We thank SignPath.io for the free code signing
  • We thank SignPath Foundation for the signing certificate
  • We thank Yusuke Kamiyamane for the icons (CCA/3.0)

Thank you to all our backers! 🙏 [Become a backer]

Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [Become a sponsor]

  • Website: gitextensions.github.ioGit repo
  • Source code: github.com/gitextensions/gitextensions
  • Online manual: git-extensions-documentation.readthedocs.orgGit repo
  • Issue tracker: github.com/gitextensions/gitextensions/issues
  • Wiki: github.com/gitextensions/gitextensions/wiki
  • Gitter chat: gitter.im/gitextensions/gitextensions

About

Git Extensions is a standalone UI tool for managing git repositories. It also integrates with Windows Explorer and Microsoft Visual Studio (2015/2017/2019).

Источник

Оцените статью
v3.5.3 [ Download ]
Current dev stream
NB: expect 🦄 🦄 🐉 🐉 and 🐛 🐛
[ Download ]
Visual Studio VSIX (2015/2017/2019) [ Download ] or install from Visual Studio via Extensions
Visual Studio addin (2010/2012/2013) Included with installer for the 2.x branch. Download and run setup.exe
  • Visual Studio 2010 Addin.zip
  • Visual Studio 2012 Addin.zip
  • Visual Studio 2013 Addin.zip
Visual Studio Code VSIX
Kudos to @pmiossec
[ Download ] or install via VSCode
NB: Please direct all discussions about the VSIX to its own repo.
IntelliJ platform IDEs
Kudos to @DmitryZhelnin
[ Download ] or install via IDE Plugins settings
NB: Please direct all discussions about this plugin to its own repo.
Git Extensions for VS Code
Kudos to @Carl-Hugo