(Windows 7中)我的.bashrc文件上的Git Bash的启动不执行(My .bashrc

2019-06-27 00:12发布

这是我做的:

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下。 有什么建议吗?

编辑:好的,我的失误......这个脚本执行,但我不完全了解它做什么。 我希望,以防止被要求提供密码每次我推到远程回购时间。 目前的情况是,我仍然要求每次。

Answer 1:

答对了! 什么是明显错误的使用ssh-agent时在.bashrc中运行的方式。 我复制从一个在这里和它的作品一种享受! 现在,我只有当混帐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


Answer 2:

在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

将提示您输入密码短语依次在每个关键,但只有第一次在机器启动后。



Answer 3:

试试这个,对我的作品。

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


文章来源: My .bashrc file not executed on Git Bash startup (Windows 7)