【问题标题】:My .bashrc file not executed on Git Bash startup (Windows 7)我的 .bashrc 文件未在 Git Bash 启动时执行(Windows 7)
【发布时间】:2012-08-08 17:41:01
【问题描述】:

这就是我所做的:

cd ~
touch .bashrc
notepad .bashrc

我的 .bashrc 的内容是(在网上某处找到):

SSH_ENV="$HOME/.ssh/environment"

# start the ssh-agent
function start_agent {
    echo "Initializing new SSH agent..."
    # spawn ssh-agent
    ssh-agent | sed 's/^echo/#echo/' > "$SSH_ENV"
    echo succeeded
    chmod 600 "$SSH_ENV"
    . "$SSH_ENV" > /dev/null
    ssh-add
}

# test for identities
function test_identities {
    # test whether standard identities have been added to the agent already
    ssh-add -l | grep "The agent has no identities" > /dev/null
    if [ $? -eq 0 ]; then
        ssh-add
        # $SSH_AUTH_SOCK broken so we start a new proper agent
        if [ $? -eq 2 ];then
            start_agent
        fi
    fi
}

# check for running ssh-agent with proper $SSH_AGENT_PID
if [ -n "$SSH_AGENT_PID" ]; then
    ps -ef | grep "$SSH_AGENT_PID" | grep ssh-agent > /dev/null
    if [ $? -eq 0 ]; then
    test_identities
    fi
# if $SSH_AGENT_PID is not properly set, we might be able to load one from
# $SSH_ENV
else
    if [ -f "$SSH_ENV" ]; then
    . "$SSH_ENV" > /dev/null
    fi
    ps -ef | grep "$SSH_AGENT_PID" | grep -v grep | grep ssh-agent > /dev/null
    if [ $? -eq 0 ]; then
        test_identities
    else
        start_agent
    fi
fi

不知何故,该脚本根本没有执行。我没有看到任何应该回显的字符串。我熟悉 Linux 和 Mac OS X 中的 Unix 命令行,但我不知道它在 Windows 下是如何工作的。请问有什么建议吗?

编辑:好的,我的错误......这个脚本已执行,但我不完全理解它的作用。我希望避免每次推送到远程仓库时都被要求输入密码。就目前而言,我仍然每次都会被问到。

【问题讨论】:

  • 这个 .bashrc 完全是 UNIX 专用的。你想在你的 git bash 中实现什么?
  • 我在编辑我的问题后,在我的问题末尾提到了我的推理。我怎样才能做到这一点?我不完全了解 SSH 的工作原理。

标签: bash mingw32 git-bash


【解决方案1】:

宾果! ssh-agent 在那个 .bashrc 中运行的方式显然有问题。我从here 复制了一个,效果很好!现在我只需要在 git bash 启动时输入一次密码,之后的任何推送都不再需要它。

下面是脚本的实际内容:

SSH_ENV=$HOME/.ssh/environment

function start_agent {
     echo "Initialising new SSH agent..."
     /usr/bin/ssh-agent | sed 's/^echo/#echo/' > ${SSH_ENV}
     echo succeeded
     chmod 600 ${SSH_ENV}
     . ${SSH_ENV} > /dev/null
     /usr/bin/ssh-add;
}

# Source SSH settings, if applicable

if [ -f "${SSH_ENV}" ]; then
     . ${SSH_ENV} > /dev/null
     #ps ${SSH_AGENT_PID} doesn't work under cywgin
     ps -ef | grep ${SSH_AGENT_PID} | grep ssh-agent$ > /dev/null || {
         start_agent;
     }
else
     start_agent;
fi

【讨论】:

  • 现在我得到了这个工作,我找到了最好的命令行解决方案:Powershell + Console2 + Posh-git!
  • +1 TY ... GitHub's Example 对我也不起作用:: 这个起作用了
  • 就我而言,我必须用双引号将所有 ${...} 括起来(例如:"${SSH_ENV}" 等)
  • 我不得不把 $HOME 放在 " 因为 windows 用户名 SSH_ENV="$HOME"/.ssh/environment 中有空格
【解决方案2】:

试试这个,对我有用。

SSH_ENV=$HOME/.ssh/environment

function start_agent {
     echo "Initialising new SSH agent..."
     /usr/bin/ssh-agent | sed 's/^echo/#echo/' > ${SSH_ENV}
     echo succeeded
     chmod 600 ${SSH_ENV}
     . ${SSH_ENV} > /dev/null
     /usr/bin/ssh-add;
}

# Source SSH settings, if applicable

if [ -f "${SSH_ENV}" ]; then
     . ${SSH_ENV} > /dev/null
     #ps ${SSH_AGENT_PID} doesn't work under cywgin
     ps -ef | grep ${SSH_AGENT_PID} | grep ssh-agent$ > /dev/null || {
         start_agent;
     }
else
     start_agent;
fi

【讨论】:

    【解决方案3】:

    Windows 上最简单的机制是这里的http://anterence.blogspot.co.uk/2012/01/ssh-agent-in-msysgit.html

    修改为显示除 'id_rsa' 以外的键名,.bashrc 文件如下所示:

    #! /bin/bash 
    eval `ssh-agent -s` 
    ssh-add ~/.ssh/github_rsa
    ssh-add ~/.ssh/otherkey_rsa
    

    系统会依次提示您输入每个密钥的密码,但仅在机器启动后第一次提示。

    【讨论】:

    • 谢谢!这对我有用,其余的都没有。也很容易理解。
    • 太棒了。我看到的唯一轻微的缺点是每个 git bash 窗口可能有一个 ssh-agent 进程。
    猜你喜欢
    • 1970-01-01
    • 2015-11-18
    • 2020-07-05
    • 1970-01-01
    • 2011-10-16
    • 2013-08-26
    • 2019-08-19
    • 1970-01-01
    • 2018-03-04
    相关资源
    最近更新 更多