1

I installed GIT (distributed revision control and source code management) system using yum install GIT. Now to install GITK (GUI for GIT) I would think it would be in the same repository as GIT, ergo a yum install GITK should work, but it returns 'No package gitk available'. (on a different CENTos installation the yum install gitk worked, so it must not be in the local repository). Where would I find a repository containing GITK [that is in url format eg. https://www.example.com/repository.repo]? (not finding any with google).

macmiller
  • 325
  • 1
  • 4
  • 15

1 Answers1

1

I ran into the same issue. I got past it by installing the 'git-gui' package, which will also install gitk:

yum install -y git-gui
ChrisGPT was on strike
  • 127,765
  • 105
  • 273
  • 257
stconnell
  • 56
  • 2