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