3

How can I stage changes and commit them from the gitk interface? It is said to be a "repository browser". Does it mean, that it is not possible to stage and commit at all?

Iain Duncan
  • 3,139
  • 2
  • 17
  • 28
nagylzs
  • 3,954
  • 6
  • 39
  • 70

1 Answers1

2

gitk is a pure browser, not full-blown git client.

You can run git GUI from gitk: menu File, command Start git gui. The GUI allows to create branches, create and amend commits.

To start the GUI from the command line run git gui.

phd
  • 82,685
  • 13
  • 120
  • 165