commit ec2d246b6544934b81c5637125725dd3db0391a7 Author: stephen Date: Fri Jun 5 21:09:32 2026 +1000 Initial Commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..39c9e58 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +./.git +.DS_Store \ No newline at end of file diff --git a/doc/Notes.md b/doc/Notes.md new file mode 100644 index 0000000..cc00715 --- /dev/null +++ b/doc/Notes.md @@ -0,0 +1,84 @@ +# 138_lama_cpp + +# The test of llama.cpp + +# Create the project + +## On the Forgejo Server + +- sign in with + - stephen + - +password Forgejo2026$$ + +Create a blank repository + +https://dev.oxnee.com./stephen/138_llama_cpp + +## clone development machine + +In a Mac terminal create the blank project + +![MacTerminal Create Project](./images/image01.png) + +Now we have a blank repository + +```zsh +stephenlohning@Scotty 138_llama_cpp % tree -a +. +├── .git +│ ├── HEAD +│ ├── config +│ ├── description +│ ├── hooks +│ │ ├── applypatch-msg.sample +│ │ ├── commit-msg.sample +│ │ ├── fsmonitor-watchman.sample +│ │ ├── post-update.sample +│ │ ├── pre-applypatch.sample +│ │ ├── pre-commit.sample +│ │ ├── pre-merge-commit.sample +│ │ ├── pre-push.sample +│ │ ├── pre-rebase.sample +│ │ ├── pre-receive.sample +│ │ ├── prepare-commit-msg.sample +│ │ ├── push-to-checkout.sample +│ │ ├── sendemail-validate.sample +│ │ └── update.sample +│ ├── info +│ │ └── exclude +│ ├── objects +│ │ ├── info +│ │ └── pack +│ └── refs +│ ├── heads +│ └── tags +└── doc + ├── Notes.md + └── images + └── image01.png +``` + +It has only a local git repository + + ```zsh + stephenlohning@Scotty 138_llama_cpp % ls -la +total 0 +drwxr-xr-x@ 3 stephenlohning staff 96 Jun 5 20:21 . +drwxr-xr-x@ 158 stephenlohning staff 5056 Jun 5 20:21 .. +drwxr-xr-x 9 stephenlohning staff 288 Jun 5 20:21 .git +stephenlohning@Scotty 138_llama_cpp % git remote -v +origin https://dev.oxnee.com./stephen/138_llama_cpp.git (fetch) +origin https://dev.oxnee.com./stephen/138_llama_cpp.git (push) +``` +I usually create a folder call doc and a folder below that for images + +# Initial .gitignore +``` +./.git +.DS_Store +``` + + +# commit back to Forgejo server +It shows 4 file commit them all \ No newline at end of file diff --git a/doc/Notes.pdf b/doc/Notes.pdf new file mode 100644 index 0000000..08220f2 Binary files /dev/null and b/doc/Notes.pdf differ diff --git a/doc/images/image01.png b/doc/images/image01.png new file mode 100644 index 0000000..7e0c1aa Binary files /dev/null and b/doc/images/image01.png differ