Skip to content
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

Merged
merged 9 commits into from
Oct 10, 2018
Merged

Add action for amending a commit #283

merged 9 commits into from
Oct 10, 2018

Conversation

kristijanhusak
Copy link
Contributor

Add M shortcut to files panel that allows amending last commit.

commitMessageView := gui.getCommitMessageView(g)
if commitMessageView.Title == gui.Tr.SLocalize("AmendLastCommit") {
commitMessageView.Clear()
commitMessageView.SetCursor(0, 0)

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


commitMessageView.Title = gui.Tr.SLocalize("CommitMessage")
g.Update(func(g *gocui.Gui) error {
g.SetViewOnTop("commitMessage")

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

commitMessageView.Title = gui.Tr.SLocalize("CommitMessage")
g.Update(func(g *gocui.Gui) error {
g.SetViewOnTop("commitMessage")
gui.switchFocus(g, filesView, commitMessageView)

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

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))

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

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)

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

@jesseduffield
Copy link
Owner

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

@jesseduffield
Copy link
Owner

@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!)

@kristijanhusak
Copy link
Contributor Author

@jesseduffield it should be ready. I didn't fix these bot ci errors because most of that code is copied.

@jesseduffield
Copy link
Owner

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 git commit --amend

What are your thoughts on this approach @kristijanhusak ?

@kristijanhusak
Copy link
Contributor Author

@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 m keybinding is already taken, so we cannot go key/shift+key route with it. Any suggestions for a different keybinding?

@jesseduffield
Copy link
Owner

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

@kristijanhusak
Copy link
Contributor Author

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."

@jesseduffield
Copy link
Owner

That sounds good to me :)

@kristijanhusak
Copy link
Contributor Author

Ok great, i'll update PR in the following days when i catch some time.

lastCommitMsg := gui.State.Commits[0].Name
_, err := gui.GitCommand.Commit(lastCommitMsg, true)
if err != nil {
gui.createErrorPanel(g, err.Error())

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

Copy link
Owner

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
}

@kristijanhusak
Copy link
Contributor Author

kristijanhusak commented Sep 25, 2018

@jesseduffield I updated it according to our agreement. If you have better suggestion for the confirmation text, let me know.
Also, for polish and dutch, I used google translate, so i'm not sure if translation is good enough.

Edit: Also, should this introduce a force push option? Amended commits cannot be regularly pushed (using shift + p).

@jesseduffield
Copy link
Owner

jesseduffield commented Sep 25, 2018

Currently if there are commits to pull, and you hit shift+p then it'll ask you whether you want to force push. After we do a git commit --amend it should then give you that prompt when you try to push. If not we might need to refresh something

@jesseduffield
Copy link
Owner

@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?

@kristijanhusak
Copy link
Contributor Author

@jesseduffield code that checks if force push is required does not work for me, at least not in all cases.
I have my neovim config repo, and a branch named defx on it. I tried amending and force pushing, and it tried regular push without asking.
After that i tried running git commands that lazygit uses to determine this, and i get error from git:

fatal: no upstream configured for branch 'defx'

for command:

git rev-list @{u}..head --count

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.
Is there something wrong with my git, or lazygit needs to do this check in a different way?

Also in my global .gitconfig, i have this added (Not sure if relevant):

[push]
	default = current

@jesseduffield
Copy link
Owner

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 git rev-list @{u}..head --count, and then force pushing should work after that. Does that resolve your issue?

@kristijanhusak
Copy link
Contributor Author

@jesseduffield no worries.

I just tried it, and unfortunately it doesn't work.
I commited and pushed through lazygit, and after that tried an amend that same commit, it failed.

screenshot

@jesseduffield
Copy link
Owner

I'll pull down your branch and see if I get the same issue

@jesseduffield
Copy link
Owner

jesseduffield commented Oct 4, 2018

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:

diff --git a/pkg/gui/files_panel.go b/pkg/gui/files_panel.go
index d76ba57..f478e63 100644
--- a/pkg/gui/files_panel.go
+++ b/pkg/gui/files_panel.go
@@ -223,8 +223,7 @@ func (gui *Gui) handleAmendCommitPress(g *gocui.Gui, filesView *gocui.View) erro
                if err != nil {
                        gui.createErrorPanel(g, err.Error())
                }
-
-               return gui.refreshFiles(g)
+               return gui.refreshSidePanels(g)
        }, nil)
 }

@kristijanhusak
Copy link
Contributor Author

Thanks, i'll fix it today or during the weekend.

@kristijanhusak
Copy link
Contributor Author

@jesseduffield i tried it, it still didn't work for me. Then i updated all head parts to HEAD in git commands, and it worked. Not sure how lowercase head worked for anyone. It's working as intended now, no need to refresh all side panels.

@jesseduffield
Copy link
Owner

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

@kristijanhusak
Copy link
Contributor Author

Makes sense. Updated it.

func (c *GitCommand) Commit(message string, amend bool) (*exec.Cmd, error) {
amendParam := ""
if amend {
amendParam = "--amend "
Copy link
Owner

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"

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done.

Copy link
Contributor Author

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
Copy link
Owner

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"))
}

Copy link
Contributor Author

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?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done.

@@ -125,6 +125,12 @@ func (gui *Gui) GetKeybindings() []*Binding {
Modifier: gocui.ModNone,
Handler: gui.handleCommitPress,
Description: gui.Tr.SLocalize("CommitChanges"),
}, {
ViewName: "files",
Key: 'M',
Copy link
Owner

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?

Copy link
Contributor Author

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.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done.

Copy link
Owner

@jesseduffield jesseduffield left a 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-io
Copy link

codecov-io commented Oct 8, 2018

Codecov Report

Merging #283 into master will increase coverage by 0.1%.
The diff coverage is 100%.

Impacted file tree graph

@@            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
Impacted Files Coverage Δ
pkg/i18n/english.go 100% <100%> (ø) ⬆️
pkg/commands/git.go 92.49% <100%> (+0.07%) ⬆️
pkg/i18n/dutch.go 100% <100%> (ø) ⬆️
pkg/i18n/polish.go 100% <100%> (ø) ⬆️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update b8b59ba...4287f8a. Read the comment docs.

@kristijanhusak
Copy link
Contributor Author

@jesseduffield I fixed most of the things. I left comments where i wasn't able to fix it according to your suggestion.

@jesseduffield jesseduffield merged commit d5f6460 into jesseduffield:master Oct 10, 2018
@jesseduffield
Copy link
Owner

Fantastic work man, I'm gonna be making use of this feature myself! Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants