Первое, что вам следует сделать после установки Git — указать ваше имя и адрес электронной почты. Это важно, потому что каждый коммит в Git содержит эту информацию, и она включена в коммиты, передаваемые вами, и не может быть далее изменена
git merge-base --is-ancestor <commit> <commit>
if git merge-base --is-ancestor master test-rebase; then
echo merged
else
echo Not merged
fi
The view argument is a string that is the file path of the view file to render. This can be an absolute path, or a path relative to the views setting.
views
String or Array
A directory or an array of directories for the application's views. If an array, the views are looked up in the order they occur in the array.
default value: process.cwd() + '/views'
function foo<K extends keyof State>(key: K, callback: (value: State[K]) => void) {
// ...
}