diff --git a/gulpfile.js b/gulpfile.js index 99eabfcb..8cafb4cf 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -227,6 +227,7 @@ var watching = function() { '__tests__/git.spec.js', 'src/js/**/*.js', 'src/js/**/**/*.js', + 'src/js/**/*.jsx', 'src/levels/**/*.js' ], series([fastBuild , jasmine, jshint, lintStrings])); }; diff --git a/src/levels/rampup/relativeRefs2.js b/src/levels/rampup/relativeRefs2.js index 5720a7c0..df280e09 100644 --- a/src/levels/rampup/relativeRefs2.js +++ b/src/levels/rampup/relativeRefs2.js @@ -83,7 +83,9 @@ exports.level = { "", "`git branch -f main HEAD~3`", "", - "moves (by force) the main branch to three parents behind HEAD." + "moves (by force) the main branch to three parents behind HEAD.", + "", + "*Note: In a real git environment `git branch -f command` is not allowed for your current branch.*" ] } },