dolt
dolt copied to clipboard
`dolt la` doesn't work
My favourite command when I log on to git is always git la, which is defined by this alias:
git config --global alias.la 'log --oneline --graph --all'
I'd love if I could run that with dolt and it'd work. But not for now, unfortunately.
Thanks. We're not focused on the CLI right now. We're more focused on the database/SQL use case. But this is a good feature request, We just won't get to it soon.
To support this functionality in addition to dolt log --graph (#4367 ) which has it's own issue we must support:
- Support
dolt log --allwhich passes in everyrefas a commit todolt log. - Support
dolt config aliasto define custom aliases.