Permissions: -rw-r--r--
#!/bin/false# paste this into an interactive shellgit init -q gitrepo && cd gitrepoecho 'a' > foogit add foogit commit -q -m 'a'echo 'b' >> foogit commit -q -a -m 'b'git checkout -q HEAD@{1}git checkout -q -b secretecho 's' >> foo && git commit -q -a -m 's'git merge master --strategy=ours --no-commit