Releases: mhutchie/vscode-git-graph
Releases · mhutchie/vscode-git-graph
1.10.0-beta.1
- #114 Prompt the user for remote credentials if they are required by commands interacting with remotes.
1.9.0
- #31 Find widget allows you to quickly find one or more commits containing a specific phrase (in the commit message / date / author / hash, branch or tag names). The find widget can be activated by the new find icon on the top right control bar, or from the new
CTRL/CMD + f
keystroke. - #98 New "Pull into current branch..." action available from the remote branch context menu.
- #100 Show merge commits with a muted text colour. This is controlled by the new setting
git-graph.muteMergeCommits
. Default: true (enabled). Thanks Sebastian Lay (@sebastianlay)! - #104 Common Emoji Shortcodes are automatically replaced with the corresponding emoji in commit messages (including all gitmoji). Custom Emoji Shortcode mappings can be defined in
git-graph.customEmojiShortcodeMappings
. - #105 Add information for troubleshooting repositories in subfolders.
- #107 Support for displaying remote svn branches.
- #109 New option on the existing 'Delete Tag...' action to also delete the tag on a remote (only shown if remotes exist).
- Improved handling of error dialogs.
1.9.0-beta.2
- #31 Find widget allows you to quickly find one or more commits containing a specific phrase (in the commit message / date / author / hash, branch or tag names). The find widget can be activated by the new find icon on the top right control bar, or from the new
CTRL/CMD + f
keystroke. - #100 Show merge commits with a muted text colour. This is controlled by the new setting
git-graph.muteMergeCommits
. Default: true (enabled). Thanks Sebastian Lay (@sebastianlay)!
1.9.0-beta.1
- #31 Find widget allows you to quickly find one or more commits containing a specific phrase (in the commit message / date / author / hash, branch or tag names). The find widget can be activated by the new find icon on the top right control bar, or from the new
CTRL/CMD + f
keystroke. - #100 Show merge commits with a muted text colour. This is controlled by the new setting
git-graph.muteMergeCommits
. Default: true (enabled). Thanks Sebastian Lay (@sebastianlay)!
1.9.0-beta.0
- #31 Find widget allows you to quickly find one or more commits containing a specific phrase (in the commit message / author / hash, branch or tag names). The find widget can be activated by the new find icon on the top right control bar, or from the new
CTRL/CMD + f
keystroke. - #100 Show merge commits with a muted text colour. This is controlled by the new setting
git-graph.muteMergeCommits
. Default: true (enabled). Thanks Sebastian Lay (@sebastianlay)!
1.8.0
- #90 New command "Git Graph: Add Git Repository" in the Command Palette allows additional Git repositories to be added to Git Graph (e.g. sub-repos).
- #91 New setting to enable Git Graph to open to the repository containing the active Text Editor document
git-graph.openToTheRepoOfTheActiveTextEditorDocument
. Default: false (disabled) - #92 Various improvements for a better user experience:
- Display the name of the running Git Action while it is occuring.
- Maintain the users scroll position when running a Git Action from context menus.
- The refresh button now indicates if a refresh is occuring.
- Enabled by default the recently added setting
git-graph.retainContextWhenHidden
to provide near-instant tab restoration when switching back to Git Graph. - Many more small tweaks.
- #93 Updates to the push tag action so that it:
- Only appears if remotes exist
- Defaults to the remote if only one exists
- Allows the user to select the remote to push to if multiple exist.
- #94 Support for pushing branches via the local branch context menu. It respects the same new remote conditions as #93.
1.8.0-beta.2
- #90 New command "Git Graph: Add Git Repository" in the Command Palette allows additional Git repositories to be added to Git Graph.
- #91 New setting to enable Git Graph to open to the repository containing the active Text Editor document
git-graph.openToTheRepoOfTheActiveTextEditorDocument
. Default: false (disabled) - #92 Various improvements for a better user experience:
- Display the name of the running Git Action while it is occuring.
- Maintain the users scroll position when running a Git Action from context menus.
- The refresh button now indicates if a refresh is occuring.
- Enabled the recently added setting
git-graph.retainContextWhenHidden
by default to provide near-instant tab restoration when switch back to Git Graph.
- #93 Updates to the push tag action so that it:
- Only appears if remotes exist
- Defaults to the remote if only one exists
- Allows the user to select the remote to push to if multiple exist.
- #94 Support for pushing branches via the local branch context menu. It respects the same remote conditions as #93.
1.8.0-beta.1
- #90 New command "Git Graph: Add Git Repository" in the Command Palette allows additional Git repositories to be added to Git Graph.
- #91 New setting to enable Git Graph to open to the repository containing the active Text Editor document
git-graph.openToTheRepoOfTheActiveTextEditorDocument
. Default: false (disabled) - #92 Various Git Action Improvements for a better user experience:
- Display the name of the running Git Action while it is occuring, for all actions triggered from context menus.
- Maintain the users scroll position when running a Git Action from context menus.
- The refresh button now indicates if a refresh is occuring.
- #93 Updates to the push tag action so that it:
- Only appears if remotes exist
- Defaults to the remote if only one exists
- Allows the user to select the remote to push to if multiple exist.
- #94 Support for pushing branches via the local branch context menu. It respects the same remote conditions as #93.
1.8.0-beta.0
- #90 New command "Git Graph: Add Git Repository" in the Command Palette allows additional Git repositories to be added to Git Graph.
- #91 New setting to enable Git Graph to open to the repository containing the active Text Editor document
git-graph.openToTheRepoOfTheActiveTextEditorDocument
. Default: false (disabled)
1.7.0
- #34 Support for rebasing the current branch on any branch or commit, from the corresponding branch/commit context menu.
- #57 New "Fetch from Remote(s)" button available on the top control bar (only visible when remotes exist). Redesigned refresh button.
- #79 Show/hide the Date, Author & Commit columns by right clicking on the column header row, and then clicking the desired column to toggle its visibility. The new setting
git-graph.defaultColumnVisibility
can be used to configure the default visibility of each column. For example:{"Date": true, "Author": true, "Commit": true}
- #87 More emphasis on the current head branch label.
- Robustness improvements when handling remotes.