-
-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add action for amending a commit #283
Add action for amending a commit #283
Conversation
Restore old file merging algorithm
pkg/gui/files_panel.go
Outdated
commitMessageView := gui.getCommitMessageView(g) | ||
if commitMessageView.Title == gui.Tr.SLocalize("AmendLastCommit") { | ||
commitMessageView.Clear() | ||
commitMessageView.SetCursor(0, 0) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Error return value of commitMessageView.SetCursor
is not checked
pkg/gui/files_panel.go
Outdated
|
||
commitMessageView.Title = gui.Tr.SLocalize("CommitMessage") | ||
g.Update(func(g *gocui.Gui) error { | ||
g.SetViewOnTop("commitMessage") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Error return value of g.SetViewOnTop
is not checked
pkg/gui/files_panel.go
Outdated
commitMessageView.Title = gui.Tr.SLocalize("CommitMessage") | ||
g.Update(func(g *gocui.Gui) error { | ||
g.SetViewOnTop("commitMessage") | ||
gui.switchFocus(g, filesView, commitMessageView) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Error return value of gui.switchFocus
is not checked
pkg/gui/files_panel.go
Outdated
g.Update(func(g *gocui.Gui) error { | ||
g.SetViewOnTop("commitMessage") | ||
gui.switchFocus(g, filesView, commitMessageView) | ||
lastCommitName := gui.State.Commits[0].Name | ||
commitMessageView.Write([]byte(lastCommitName)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Error return value of commitMessageView.Write
is not checked
pkg/gui/files_panel.go
Outdated
g.Update(func(g *gocui.Gui) error { | ||
g.SetViewOnTop("commitMessage") | ||
gui.switchFocus(g, filesView, commitMessageView) | ||
lastCommitName := gui.State.Commits[0].Name | ||
commitMessageView.Write([]byte(lastCommitName)) | ||
commitMessageView.SetCursor(len(lastCommitName), 0) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Error return value of commitMessageView.SetCursor
is not checked
Thanks for making this :) There is currently a Gui rework PR up #276 so I'm gonna wait until that's merged (hopefully soon) before giving this a review |
@kristijanhusak the PR I mentioned earlier has been put off until its creator has some more time on his hands. Let me know when this PR is ready for review :) (I'm looking forward to using it myself!) |
@jesseduffield it should be ready. I didn't fix these bot ci errors because most of that code is copied. |
I like the fact that we're bringing up the commit message panel so you can change the name of the commit if you wish, but this presents a design inconsistency. Currently we support entering a commit message directly in the commit message panel, or via an editor like vim. the 'c' keybinding does the former, and the 'shift+c' keybinding does the latter. The same is true of renaming a commit i.e. r vs shift+r. So here, if we want to support renaming the commit as you amend it, we'll need to support renaming it via the editor as well. For this reason, I think we should just amend the commit without changing the commit message. If the user then decides they also want to change the commit message, they can do so in the commits panel using r/shift+r. Instead I think we should have a confirmation popup saying 'are you sure you want to amend this commit' and upon hitting enter it runs What are your thoughts on this approach @kristijanhusak ? |
@jesseduffield I think we should allow amending commit also via $EDITOR in that case. That way we could leave the commit message panel as it is now, and just add a keybinding that will allow amending via editor. Only issue is that |
I'm not sure. Do you think there is a genuine use case for having two keybindings here though? I imagine that most people using git commit --amend don't need to change the commit message, and if they do, they can currently do that after the fact with r/shift+r in the commit panel |
I guess you're right. Most of the time i do not change it, but it looked good to have an option to do that easily. I didn't even figure out by myself that there's an option to rename commit from commits panel, so maybe the amend confirmation popup should contain some short instructions that will let user know that they can rename the commit from the commits panel, something like "Are you sure you want to amend this commit? You can change commit message later from commits panel." |
That sounds good to me :) |
Ok great, i'll update PR in the following days when i catch some time. |
pkg/gui/files_panel.go
Outdated
lastCommitMsg := gui.State.Commits[0].Name | ||
_, err := gui.GitCommand.Commit(lastCommitMsg, true) | ||
if err != nil { | ||
gui.createErrorPanel(g, err.Error()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Error return value of gui.createErrorPanel
is not checked
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know this might be copy+pasted but to appease golangci could we wrap this line an error check:
if err := gui.createErrorPanel(g, err.Error()); err != nil {
return err
}
@jesseduffield I updated it according to our agreement. If you have better suggestion for the confirmation text, let me know. Edit: Also, should this introduce a force push option? Amended commits cannot be regularly pushed (using shift + p). |
Currently if there are commits to pull, and you hit |
@mjarkk I forget what the procedure is for translations. What should a contributor do if they are adding new strings to the english.go file? |
@jesseduffield code that checks if force push is required does not work for me, at least not in all cases.
for command:
I know i could fix this by setting up an upstream for a branch, but even without setting up an upstream, i can properly commit/push/force push to that branch manually. Also in my global
|
Sorry for the late reply, I've been swamped by other stuff recently and have had to take a minor hiatus from the repo. Pushing via lazygit should set the upstream branch to origin/branchname, so that should resolve the issue with |
@jesseduffield no worries. I just tried it, and unfortunately it doesn't work. |
I'll pull down your branch and see if I get the same issue |
Ah so the issue is that the status bar isn't being refreshed, meaning we're not getting an update on whether the pull/push count has changed, and that's what the pull method looks at to decide whether it needs to force push. It's not really good to have the app's state and UI coupled in this way but I'm happy to leave improvements on that to a refactor PR. This patch should fix the issue:
|
Thanks, i'll fix it today or during the weekend. |
@jesseduffield i tried it, it still didn't work for me. Then i updated all |
Ah cool, git is case insensitive when it comes to HEAD on osx so that would be it. I would still refresh the status panel though because after the amend, the pushable/pullable count should be updated |
Makes sense. Updated it. |
pkg/commands/git.go
Outdated
func (c *GitCommand) Commit(message string, amend bool) (*exec.Cmd, error) { | ||
amendParam := "" | ||
if amend { | ||
amendParam = "--amend " |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nitpick but if you're gonna use fmt.Sprintf we should add that trailing space character to the format string i.e. "git commit %s -m %s"
and then say amendParam = "--amend"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jesseduffield i did this, but i reverted it back with a space before --
. Lot's of tests fail because moving space to Sprintf
causes two spaces between git commit
and -m
if there's no amend.
title := strings.Title(gui.Tr.SLocalize("AmendLastCommit")) | ||
question := gui.Tr.SLocalize("SureToAmend") | ||
return gui.createConfirmationPanel(g, filesView, title, question, func(g *gocui.Gui, v *gocui.View) error { | ||
lastCommitMsg := gui.State.Commits[0].Name |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it is possible that we have just done a git init
so there are no commits yet. I would chuck a check for that here:
if len(gui.State.Commits) == 0 {
return errors.New(gui.Tr.SLocalize("NoCommitToAmend"))
}
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should i do it before the confirmation panel, or inside of it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
pkg/gui/keybindings.go
Outdated
@@ -125,6 +125,12 @@ func (gui *Gui) GetKeybindings() []*Binding { | |||
Modifier: gocui.ModNone, | |||
Handler: gui.handleCommitPress, | |||
Description: gui.Tr.SLocalize("CommitChanges"), | |||
}, { | |||
ViewName: "files", | |||
Key: 'M', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see that the 'A' keybinding is used to abort merges, but this seems like an operation that wouldn't be used often. What are your thoughts on using shift+M for abort merge
and shift+A for amend commit
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah that makes sense. I'll switch it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome work! I left some comments. Also tests are failing on CI
Codecov Report
@@ Coverage Diff @@
## master #283 +/- ##
=========================================
+ Coverage 93.97% 94.08% +0.1%
=========================================
Files 12 12
Lines 1661 1691 +30
=========================================
+ Hits 1561 1591 +30
Misses 98 98
Partials 2 2
Continue to review full report at Codecov.
|
@jesseduffield I fixed most of the things. I left comments where i wasn't able to fix it according to your suggestion. |
Fantastic work man, I'm gonna be making use of this feature myself! Thanks! |
Add
M
shortcut to files panel that allows amending last commit.