exports.isGitUptodate = () => { var r = $STR($$.shell().commands('git', 'fetch', '--dry-run').mergeError().start()[0]); if (r.trim().length > 0) { return false; } return true; };