Initial Commit
This commit is contained in:
commit
ec2d246b65
4 changed files with 86 additions and 0 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
./.git
|
||||||
|
.DS_Store
|
||||||
84
doc/Notes.md
Normal file
84
doc/Notes.md
Normal file
|
|
@ -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
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
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
|
||||||
BIN
doc/Notes.pdf
Normal file
BIN
doc/Notes.pdf
Normal file
Binary file not shown.
BIN
doc/images/image01.png
Normal file
BIN
doc/images/image01.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 34 KiB |
Loading…
Reference in a new issue