Is there a git graphical management interface?

I want to change the history of git: change the authors of the commit (someone marks them incorrectly), etc.

Is there any GUI for git that focuses not on the current pull and push commit, but on editing the story?

PS I use linux, so linux clients are preferable, but I can run wine for it

+4
source share
4 answers

You can try one of them:

If you are working with the Eclipse IDE, there is an EGit plugin .

+4
source

in git Bash type gitk . Suppose you need

+1
source

If you can run mono on Linux, I think GitExtensions is the best choice.

GitExtensions relies on the git command line.

GitExtensions is actively developed and has many fantastic features.

0
source

If you are developing C # on Linux with Monodevelop , there is a built-in git plugin based on NGit .

Monodevelop does not invoke the git command line.

0
source

Source: https://habr.com/ru/post/1443935/


All Articles