1

I just downloaded gnu-smalltalk with apt-get on ubuntu. How do i run smalltalk from here?

sudo apt-get install -y gnu-smalltalk

gst gives me the error: fatal: not a git repository (or any of the parent directories): .git.

David
  • 2,926
  • 1
  • 27
  • 61
  • Just define your own alias that doesn't conflict with git's alias, for example: `alias gnust={path to your GNU Smalltalk gst program}`. Put that in your login profile. – lurker Feb 20 '21 at 14:02
  • You closed a question which is much longer open? Why? – David Feb 21 '21 at 21:08

1 Answers1

5

It looks like you have a function, alias, or command named gst that is somehow related to Git. Maybe an alias for git status?

Jörg W Mittag
  • 363,080
  • 75
  • 446
  • 653