This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>AnyHost browser test</title> | |
<link rel="stylesheet" href="../Dependency/mocha.css" /> | |
</head> | |
<body> | |
<div id="mocha"></div> | |
<script src="require.js"></script> | |
<script src="mocha.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#this command prepare list of lost/unreachable commits and print those Hash and comment | |
#suggested by wise answer in http://stackoverflow.com/questions/16793637/recover-deleted-branch-git | |
git fsck --full --no-reflogs --unreachable --lost-found | grep commit | cut -d\ -f3 | xargs -n 1 git log -n 1 --pretty=oneline |