This is cool but I tried sending the same text with my general purpose GPT (text-davinci-003) command line tool and it did the same thing. This one is mine: https://github.com/runvc/askleo There are other ones of course.
Show HN: Gitgpt – Natural Language Git
21–30 of 92 posts
Re: Show HN: Gitgpt – Natural Language Git
#22Not sure what value it adds though. Isn’t it easier to type the cmds then to write all that? If there’s a good product in it I’m afraid your examples aren’t selling it :S Was first thinking it could have value for when you forget a cmd or when learning, but I think if you can come up with those technical instructions you can also remember the cmds …
Not sure what value it adds though. Isn’t it easier to type the cmds then to write all that? It's pretty obvious it's intended use cases include memory prompts for experienced users and translations from English requirements for inexperienced users. It's even in the OP: use natural language to get git to do what you want.
> add .gitignore commit with msg adding ignore and push
That's not very compelling. The main selling point of AI is using simple inputs to achieve advanced outputs that match what the user wanted.
If I can say "Commit my .gitignore file," and then it runs
git add .gitignore
git commit -m "Adding .gitignore"
git push [y/N] y
Then that's one thing.
But this looks like you still have to specify the exact message you want, and be pretty deliberate about what it is you're after. At that point, why not just learn, and write, the commands yourself?
Re: Show HN: Gitgpt – Natural Language Git
#23This is cool but I tried sending the same text with my general purpose GPT (text-davinci-003) command line tool and it did the same thing. This one is mine: https://github.com/runvc/askleo There are other ones of course.
404, check your url
Re: Show HN: Gitgpt – Natural Language Git
#24Earlier quoted context omitted.
Not sure what value it adds though. Isn’t it easier to type the cmds then to write all that? It's pretty obvious it's intended use cases include memory prompts for experienced users and translations from English requirements for inexperienced users. It's even in the OP: use natural language to get git to do what you want.
But when the prompt is: > add .gitignore commit with msg adding ignore and push That's not very compelling. The main selling point of AI is using simple inputs to achieve advanced outputs that match what the user wanted. If I can say "Commit my .gitignore file," and then it runs git add .gitignore git commit -m "Adding .gitignore" git push [y/N] y Then that's one thing. But this looks like you still have to specify t…
Re: Show HN: Gitgpt – Natural Language Git
#25Earlier quoted context omitted.
Not sure what value it adds though. Isn’t it easier to type the cmds then to write all that? It's pretty obvious it's intended use cases include memory prompts for experienced users and translations from English requirements for inexperienced users. It's even in the OP: use natural language to get git to do what you want.
But when the prompt is: > add .gitignore commit with msg adding ignore and push That's not very compelling. The main selling point of AI is using simple inputs to achieve advanced outputs that match what the user wanted. If I can say "Commit my .gitignore file," and then it runs git add .gitignore git commit -m "Adding .gitignore" git push [y/N] y Then that's one thing. But this looks like you still have to specify t…
Re: Show HN: Gitgpt – Natural Language Git
#26Re: Show HN: Gitgpt – Natural Language Git
#27Re: Show HN: Gitgpt – Natural Language Git
#28I disagree
Re: Show HN: Gitgpt – Natural Language Git
#29That looks cool, though I'd be very concerned about the possibility about ChatGPT "hallucinating" a `rm -rf /` or equivalent.
Re: Show HN: Gitgpt – Natural Language Git
#30I would be very concerned to run this on company code or large diffs. But small simple commits, which should be the goal with commit messages anyways, would take away some of the tedium of the git flow.