File tree Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Original file line number Diff line number Diff line change 1515 - name : Run ShellCheck
1616 uses : ludeeus/action-shellcheck@master
1717 with :
18- ignore_paths : ./completion.*
18+ ignore_paths : ./completion.* ./t/*
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+
3+ test_description=' .'
4+
5+ export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
6+
7+ TEST_PASSES_SANITIZE_LEAK=true
8+ . ./test-lib.sh
9+
10+ test_expect_success ' setup' '
11+ git init almost-complete
12+ cd almost-complete/
13+
14+ echo "Testing file 1" >test_01.txt
15+ git add test_01.txt
16+ git commit -m "Commiting the first file."
17+ echo "Testing file 2" >test_02.txt
18+ git add test_02.txt
19+ git commit -m "Commiting the second file."
20+ echo "Modifying the first file." >>test_01.txt
21+ git add test_01.txt
22+ # git fixup --no-commit |grep -s "something"
23+ /bin/true
24+ '
25+
26+ test_done
You can’t perform that action at this time.
0 commit comments