Replies: 1 comment
-
Feel free to open a pull request that lets the editor generate an You'll need to modify these parts of the source code: |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello!
So, I just started working with Godot (again...)
I like the feature that your editor seems to integrate a Version Control System into the project.
However, it looks as if the default configuration only features Git?
The thing is, that I am a huge fan of mercurial nowadays, and I would thus like to propose adding it as a feature.
The usage is not that different from GIT:
https://www.mercurial-scm.org/quickstart
instead of "git clone", you do "hg clone".
instead of "git commit -a", you do "hg commit"
instead of "git push", you do "hg push"
instead of "git pull", you do "hg pull ; hg update"
instead of "git add", you do "hg add"
instead of "git rm", you do "hg rm"
Having this feature would offer a lot of freedom to developers such as myself.
Beta Was this translation helpful? Give feedback.
All reactions