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 stash -qgit stash pop -q && git 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 mastergit reset --mergegit merge master --strategy=ours --no-commit