Jujutsu/git integration
The editor now has a button to commit changes to a Jujutsu repository, which is automatically created if it's not present. A git remote is automatically set up using the URL template in settings.py. I use this with Forgejo's create-on-push feature to automatically create repositories on my Forgejo instance.
This commit is contained in:
parent
500eb38774
commit
d474a394f5
13 changed files with 913 additions and 376 deletions
|
@ -127,3 +127,10 @@ class RunCommandForm(forms.ModelForm):
|
|||
class Meta:
|
||||
model = Think
|
||||
fields = []
|
||||
|
||||
class GitCommitForm(forms.ModelForm):
|
||||
message = forms.CharField()
|
||||
|
||||
class Meta:
|
||||
model = Think
|
||||
fields = []
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue