有没有办法从git bash打开文件夹/目录?我知道您可以使用'start'然后使用文件名打开一个文件,但有没有办法打开整个文件夹?
答案 0 :(得分:10)
Haven没有使用" Git Bash" ...我认为它是一个bash shell模拟器。如果是这样,请尝试:
cd <folder>
cd代表更改目录。
要打开当前文件夹,请尝试:
start .
&#39;。&#39;是当前文件夹。
答案 1 :(得分:0)
我在~/.bashrc
中使用此别名来反映我从OSX错过的open
功能:
function open() {
# if argument != '.', open full-path to argument
[ "$@" = '.' ] && dir_path="." || dir_path=$(realpath "$@")
start $dir_path
}
您可以使用它打开目录的相对路径:open /relativeDirectory
以下是相同的代码,易于阅读:
function open() {
arg="$@"
dir_path=$(realpath $arg)
if [ "$arg" = '.' ]; then
dir_path="."
fi
start $dir_path
}