File: beef

package info (click to toggle)
gitbrute 0~15-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 84 kB
  • sloc: sh: 12; makefile: 6
file content (14 lines) | stat: -rwxr-xr-x 347 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
set -e

cd "$AUTOPKGTEST_TMP"
git init -b dominus
echo meow >meow
export GIT_AUTHOR_NAME='Julius Caesar'
export GIT_AUTHOR_EMAIL='imperator@spqr.it'
export GIT_COMMITTER_NAME="$GIT_AUTHOR_NAME"
export GIT_COMMITTER_EMAIL="$GIT_AUTHOR_EMAIL"
git add meow
git commit -m Meow!
git brute -prefix beef
git log|head -n1|grep -q '^commit beef'