You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: scaffolding-with-fano-cli/index.md
+7-7
Original file line number
Diff line number
Diff line change
@@ -23,10 +23,10 @@ $ fanocli --help
23
23
24
24
## Scaffolding project directory structure
25
25
26
-
To scaffolding project structure using Fano framework, run with `--create-project` command line options
26
+
To scaffold project structure using Fano framework, run with `--create-project` command line options
27
27
28
28
```
29
-
$ fanocli --create-project=[another projectname]
29
+
$ fanocli --create-project=[project-name]
30
30
```
31
31
32
32
For example, following command will cause a new project created in directory name `test-fano` inside current directory.
@@ -35,16 +35,16 @@ For example, following command will cause a new project created in directory nam
35
35
$ fanocli --create-project=test-fano
36
36
```
37
37
38
-
This command line options creates GIT repository and initial commit for you automatically. This behavior may cause problem if you already create remote repository and try to merge local repository with remote one. Git may refuse
38
+
This command line options creates Git repository and initial commit for you automatically. This behavior may cause problem if you already create remote repository and try to merge local repository with remote one. Git may refuse
39
39
to merge because they have unrelated commit histories.
40
40
41
41
To workaround this problem, you can run `git merge` with option `--allow-unrelated-histories` or create project directory structure without
42
-
GIT repository.
42
+
Git repository.
43
43
44
-
## Scaffolding project directory structure without GIT
44
+
## Scaffolding project directory structure without Git
45
45
46
-
To scaffolding project structure using Fano framework but without initializing
47
-
GIT repository, run with `--create-project-without-git` command line options
46
+
To scaffold project structure without initializing
47
+
Git repository, run with `--create-project-without-git` command line options
0 commit comments