3 Star 12 Fork 2

Git工具集/git-lfs

Create your Gitee Account
Explore and code with more than 14 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
t-track-attrs.sh 762 Bytes
Copy Edit Raw Blame History
#!/usr/bin/env bash
. "$(dirname "$0")/testlib.sh"
ensure_git_version_isnt $VERSION_LOWER "2.1.0"
begin_test "track (--no-modify-attrs)"
(
set -e
reponame="track-no-modify-attrs"
git init "$reponame"
cd "$reponame"
echo "contents" > a.dat
git add a.dat
# Git assumes that identical results from `stat(1)` between the index and
# working copy are stat dirty. To prevent this, wait at least one second to
# yield different `stat(1)` results.
sleep 1
git commit -m "add a.dat"
echo "*.dat filter=lfs diff=lfs merge=lfs -text" > .gitattributes
git add .gitattributes
git commit -m "asdf"
[ -z "$(git status --porcelain)" ]
git lfs track --no-modify-attrs "*.dat"
[ " M a.dat" = "$(git status --porcelain)" ]
)
end_test
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/vcs-all-in-one/git-lfs.git
git@gitee.com:vcs-all-in-one/git-lfs.git
vcs-all-in-one
git-lfs
git-lfs
master

Search