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
var d = require("domain"); | |
setTimeout(function() { | |
console.log('domain stack length is now ' + d._stack.length); | |
}, 100); | |
d.create().run(function() { | |
d.create().run(function() { | |
d.create().run(function() { | |
d.create().on("error", function(e) { |
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
var domain = require('domain'); | |
var d = domain.create(); | |
d.on('error', function() { | |
console.log('caught'); | |
}); | |
d.run(function() { | |
throw new Error('meh'); | |
}); |
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
(master) | |
A---B---C---E---F | |
\ | |
D---G---H | |
(feature) | |
git rebase --onto master D feature | |
(master) | |
D---G---H |
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
count@bokonon:~/foobar/foo$ ls .git/MERGE_* | |
.git/MERGE_HEAD .git/MERGE_MODE .git/MERGE_MSG | |
count@bokonon:~/foobar/foo$ git pull | |
Already up-to-date. | |
count@bokonon:~/foobar/foo$ ls .git/MERGE_* | |
ls: cannot access .git/MERGE_*: No such file or directory |
NewerOlder