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

Allow viewing past commits in Zed #27636

Merged
merged 24 commits into from
Mar 31, 2025
Merged

Allow viewing past commits in Zed #27636

merged 24 commits into from
Mar 31, 2025

Conversation

maxbrunsfeld
Copy link
Collaborator

@maxbrunsfeld maxbrunsfeld commented Mar 27, 2025

This PR adds functionality for loading the diff for an arbitrary git commit, and displaying it in a tab. To retrieve the diff for the commit, I'm using a single git cat-file --batch invocation to efficiently load both the old and new versions of each file that was changed in the commit.

Todo

  • Features
    • Open the commit view when clicking the most recent commit message in the commit panel
    • Open the commit view when clicking a SHA in a git blame column
    • Open the commit view when clicking a SHA in a commit tooltip
    • Make it work over RPC
    • Allow buffer search in commit view
    • Command palette action to open the commit for the current blame line
  • Styling
    • Add a header that shows the author, timestamp, and the full commit message
    • Remove stage/unstage buttons in commit view
    • Truncate the commit message in the tab
  • Bugs
    • Dedup commit tabs within a pane
    • Add a tooltip to the tab

Release Notes:

  • Added the ability to show past commits in Zed. You can view the most recent commit by clicking its message in the commit panel. And when viewing a git blame, you can show any commit by clicking its sha.

@cla-bot cla-bot bot added the cla-signed The user has signed the Contributor License Agreement label Mar 27, 2025
@Angelk90
Copy link
Contributor

Angelk90 commented Mar 31, 2025

@maxbrunsfeld : Isn't the tab size too big?
Screenshot 2025-03-31 alle 18 30 21

@Angelk90
Copy link
Contributor

@maxbrunsfeld : File sorting is different than github uses, by folder from what I understand.
Can it be changed?
Screenshot 2025-03-31 alle 18 34 32
Screenshot 2025-03-31 alle 18 36 35

@Angelk90
Copy link
Contributor

By mistake, clicking multiple times opens the tab multiple times, which I think shouldn't happen, if it's already open there's no point in opening it.
As with files.

Also, there's no informative tooltip when you move over the tab.

Registrazione.schermo.2025-03-31.alle.18.48.16.mov

@maxbrunsfeld
Copy link
Collaborator Author

maxbrunsfeld commented Mar 31, 2025

Isn't the tab size too big?

You mean the width of the tab (due to the commit message)? What character limit do you think we should impose?

@maxbrunsfeld
Copy link
Collaborator Author

Can it be changed?

I think that for now, I'd like to leave the same path sorting as in other multi-buffers. Maybe separately from this we could revisit how that sorting works in Zed across the board. It looks like they are sorting / after other path characters like ..

@Angelk90
Copy link
Contributor

@maxbrunsfeld : Show only the first seven characters of the sha in the tab, then when you move to the tab, via tooltip show any commit message, if it is too long show only a part.

@maxbrunsfeld maxbrunsfeld marked this pull request as ready for review March 31, 2025 22:49
@maxbrunsfeld
Copy link
Collaborator Author

I left a little bit of the commit message in the tab - I think it helps to identify the commit a bit better than just the SHA, even if we truncate it.

@maxbrunsfeld maxbrunsfeld enabled auto-merge (squash) March 31, 2025 23:26
@maxbrunsfeld maxbrunsfeld merged commit 8546dc1 into main Mar 31, 2025
16 checks passed
@maxbrunsfeld maxbrunsfeld deleted the show-git-commit branch March 31, 2025 23:26
CharlesChen0823 pushed a commit to CharlesChen0823/zed that referenced this pull request Apr 1, 2025
This PR adds functionality for loading the diff for an arbitrary git
commit, and displaying it in a tab. To retrieve the diff for the commit,
I'm using a single `git cat-file --batch` invocation to efficiently load
both the old and new versions of each file that was changed in the
commit.

Todo

* Features
* [x] Open the commit view when clicking the most recent commit message
in the commit panel
  * [x] Open the commit view when clicking a SHA in a git blame column
  * [x] Open the commit view when clicking a SHA in a commit tooltip
  * [x] Make it work over RPC
  * [x] Allow buffer search in commit view
* [x] Command palette action to open the commit for the current blame
line
* Styling
* [x] Add a header that shows the author, timestamp, and the full commit
message
  * [x] Remove stage/unstage buttons in commit view
  * [x] Truncate the commit message in the tab
* Bugs
  * [x] Dedup commit tabs within a pane
  * [x] Add a tooltip to the tab

Release Notes:

- Added the ability to show past commits in Zed. You can view the most
recent commit by clicking its message in the commit panel. And when
viewing a git blame, you can show any commit by clicking its sha.
@Angelk90
Copy link
Contributor

Angelk90 commented Apr 1, 2025

@maxbrunsfeld : Why do you only show the first sixteen characters of the sha in the tooltip?

There are a few things about this part that I would like to discuss, are you available?

maxbrunsfeld added a commit that referenced this pull request Apr 1, 2025
@maxbrunsfeld
Copy link
Collaborator Author

Why do you only show the first sixteen characters of the sha in the tooltip?

My thought was that otherwise, the tooltip gets quite large, but I'm open to showing the whole SHA.

There are a few things about this part that I would like to discuss, are you available?

Yeah, email me at max at zed dot dev, and we can make a plan.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cla-signed The user has signed the Contributor License Agreement
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants