Git post 提交并 bash windows
Git post commit and bash on windows
我想在提交到目录后复制所有 *.obj 文件(被 git 忽略,但存在于目录中)。
使用此脚本:
#!/bin/sh
pwd
branch=$(git rev-parse --symbolic --abbrev-ref HEAD)
echo logging objfiles for $branch
mkdir -p ./OBJ_$branch/
cp -u -f -r *.obj ./OBJ_$branch/
Git 表示提交后,"Cannot stat *.obj"
我知道不同的端线,此文件是使用带有 linux 端线的 PSPad 保存的。
感谢您的帮助!
pwd 打印正确的目录。
我想在提交到目录后复制所有 *.obj 文件(被 git 忽略,但存在于目录中)。
使用此脚本:
#!/bin/sh
pwd
branch=$(git rev-parse --symbolic --abbrev-ref HEAD)
echo logging objfiles for $branch
mkdir -p ./OBJ_$branch/
cp -u -f -r *.obj ./OBJ_$branch/
Git 表示提交后,"Cannot stat *.obj"
我知道不同的端线,此文件是使用带有 linux 端线的 PSPad 保存的。
感谢您的帮助!
pwd 打印正确的目录。