Convert your key to dropbear key

wget https://matt.ucc.asn.au/dropbear/releases/dropbear-2022.82.tar.bz2

tar -xf dropbear-2022.82.tar.bz2

cd ./dropbear-2022.82/

./configure

make PROGRAMS=”dropbear dbclient dropbearkey dropbearconvert scp”

The result is make error.
It doesn’t matter because dropbearconvert is ready.

Now, you can prepare key(id_rsa).
dropbear-2022.82/dropbearconvert openssh dropbear id_rsa id_dropbear

第一次使用git 且建置一個新project

[Create a new git project]

move to git path

/* if add new repository */

cd /mnt/data/git/
su git
/* if this file already exist , so we should remove it */
rm -rf firstproject.git
mkdir firstproject.git
cd /mnt/data/git/firstproject.git
git init –bare –shared
vi description(輸入想要的描述內容)

/* if add new repository, must add in list */
cd /home/git
vi projects.list

[Other Commend]

/* get old version */
git clone XXX(PATH)
git log

/* check commit id ,then get version */
git checkout 5bdd66143ae8e6c296f50c114de21ab056eed85d

/* Upload new Version */
cd /to/your/path
git add .
git commit -m ‘your description’
git push