84 lines
No EOL
2 KiB
Markdown
84 lines
No EOL
2 KiB
Markdown
# 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
|
|
|
|

|
|
|
|
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 |