diff options
| author | Mark Levedahl <mlevedahl@gmail.com> | 2024-02-13 00:13:45 -0500 |
|---|---|---|
| committer | Mark Levedahl <mlevedahl@gmail.com> | 2025-07-18 23:48:06 -0400 |
| commit | 8b48034f78267c0f80a5185629bce529ad88e376 (patch) | |
| tree | 084061db751756de9acf7c65326a476a4e8b8f35 | |
| parent | e42ba88178c0088cba7cca521a671c92aaa4a300 (diff) | |
| download | git-8b48034f78267c0f80a5185629bce529ad88e376.tar.gz | |
git-gui: git-remote is always available
git-gui checks for git version >= 1.6.6 before enabling the remotes
menu. But git-gui requires git v2.36 or later, so git-remote is always
available. Delete this check and always enable the menu.
Signed-off-by: Mark Levedahl <mlevedahl@gmail.com>
| -rw-r--r-- | lib/remote.tcl | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/remote.tcl b/lib/remote.tcl index cf796d1601..9b49b6e462 100644 --- a/lib/remote.tcl +++ b/lib/remote.tcl @@ -233,8 +233,6 @@ proc make_sure_remote_submenues_exist {remote_m} { proc update_all_remotes_menu_entry {} { global all_remotes - if {[git-version < 1.6.6]} { return } - set have_remote 0 foreach r $all_remotes { incr have_remote |
