项目作者: BillKek

项目描述 :
Best Git-GUI password manager , password storage and helper. No complicated configurations required. No strange foreign binaries required. Portable-way storage.
高级语言: Tcl
项目地址: git://github.com/BillKek/Git-GUI-ultra-simple-password-manager.git
创建时间: 2021-05-07T18:10:19Z
项目社区:https://github.com/BillKek/Git-GUI-ultra-simple-password-manager

开源协议:GNU General Public License v2.0

下载


Git-GUI-ultra-simple-password-manager

Best Git-GUI password manager , password storage and helper. No complicated configurations required. No strange foreign binaries required. Portable-way storage.

Installation

1) find git-gui--askpass file in your Git installation path (in C:\Git\mingw64\libexec\git-core\ or something with your installation path)
2) overwrite or edit git-gui--askpass
3) Ready to use!

What has been added?

Added block for login insertion as text, directly from code:

  1. if {[string match "{Username *}" $argv]} {
  2. set answer "edit_to_place_email_here_used_as_login@your_email.ru"
  3. }

Added block for password insertion as text, directly from code:

  1. if {[string match "{Password for *}" $argv]} {
  2. set answer "edit_to_place_passowrd_here_used_as_password_for_git_repos_server"
  3. }

Modified caption/name of window, to provide user understanding of what is happening:

  1. wm title . "OpenSSH_Edit_to_place_here_profile_name_to_identify_action"