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