如何在 Git 中为 Windows 运行 bash shell 安装 git 子仓库
How to install git subrepo in Git for Windows running bash shell
我知道有安装说明gitsubrepo in Git for windows here。
我知道我必须做什么,但是,我不知道在哪里可以找到 shell 启动脚本。我已经安装了 Git Bash shell,但我不知道它的 shell 启动脚本在哪里。
有谁知道启动脚本在哪里?
只要:
git
在你的 $PATH
- git subrepo
.rc
file 已添加到您的 .bashrc
(source /path/to/git-subrepo/.rc' >> ~/.bashrc
,通过 git bash 会话完成)
您可以使用常规 git-bash shell,然后开始键入 git subrepo
命令。
“shell 启动配置”是 .rc
文件,您在其中克隆了存储库(在 git bash 中的 /c/path/to/your/git-subrepo/clone
会话)
如果在 C:\Users\Me\git-subrepo 中克隆,则需要输入 bash 会话:
source /c/Users/Me/git-subrepo/.rc' >> ~/.bashrc
OP wiyosaya did (in the ):
- 创建 .bashrc:
touch ~/.bashrc
- 添加缺失的行:
echo source /c/GitHub/git-subrepo/.rc >> ~/.bashrc
我知道有安装说明gitsubrepo in Git for windows here。
我知道我必须做什么,但是,我不知道在哪里可以找到 shell 启动脚本。我已经安装了 Git Bash shell,但我不知道它的 shell 启动脚本在哪里。
有谁知道启动脚本在哪里?
只要:
git
在你的$PATH
- git subrepo
.rc
file 已添加到您的.bashrc
(source /path/to/git-subrepo/.rc' >> ~/.bashrc
,通过 git bash 会话完成)
您可以使用常规 git-bash shell,然后开始键入 git subrepo
命令。
“shell 启动配置”是 .rc
文件,您在其中克隆了存储库(在 git bash 中的 /c/path/to/your/git-subrepo/clone
会话)
如果在 C:\Users\Me\git-subrepo 中克隆,则需要输入 bash 会话:
source /c/Users/Me/git-subrepo/.rc' >> ~/.bashrc
OP wiyosaya did (in the
- 创建 .bashrc:
touch ~/.bashrc
- 添加缺失的行:
echo source /c/GitHub/git-subrepo/.rc >> ~/.bashrc