The main command is:
git config --global core.editor "path to your editor with params"
Set up an editor and check it by making a commit:
| import { parse, type Literal } from 'acorn'; | |
| import { type Node } from 'estree-walker'; | |
| import { walk } from 'zimmerframe'; | |
| const ast = parse(output, { | |
| ecmaVersion: 2022, | |
| sourceType: 'module', | |
| sourceFile: full_path, | |
| }); |
| import * as React from "react"; | |
| // @ts-ignore | |
| import * as ReactDOM from "#react-dom-server-implementation"; | |
| // @ts-ignore | |
| import * as ReactDOMClient from "#react-server-dom-client-implementation"; | |
| export async function fetch( | |
| request: Request, | |
| { | |
| browserEntry, |
| module.exports = (api) => { | |
| api.cache.using(() => process.env.NODE_ENV); | |
| return { | |
| presets: ["next/babel"], | |
| plugins: [["effector/babel-plugin", { reactSsr: true }]], | |
| }; | |
| }; |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"