就是有点不好的地方,用的是root账号
方法:通过opkg直接安装git。ssh进去后,直接opkg install git.
然后直接在root根目录新建git仓文件夹。
1、ssh进入后默认的地方,mkdir git,然后cd git
2、git init --bare test.git [test.git是自己设置的git仓]
3、在客户端(也就是电脑) 进入git命令行模式
4、前期设置使用自行百度git使用方法,用ssh连接
5、如果直接 git remote add origin ssh://[email protected]:22/userdisk/opt/root/git/blog.git 【/userdisk/opt/root/git/blog.git 为git仓的路径】
在首次push时,需要git push --set-upstream mi master,但会有如下问题:
[email protected]'s password:
ash: git-receive-pack: not found
fatal: 无法读取远程仓库。
请确认您有正确的访问权限并且仓库存在。
后面找了很久,发现是ssh链接git仓后,不会默认加载用户配置文件,那就只能指定了。
方法:在客户端.git文件夹里的config文件做如下修改
[remote "origin"]
url = ssh://[email protected]:22/userdisk/opt/root/git/blog.git
fetch = +refs/heads/*:refs/remotes/origin/*
uploadpack = /opt/bin/git-upload-pack
receivepack = /opt/bin/git-receive-pack
【添加红色部分,我的路径是在opt文件夹里,以前在安装opkg的时候对文件夹进行了挂载,如果不成功检查这两个命令在哪,which命令查一下,然后修改路径就可以了】
之后就能愉快的git了。