标签:sys city 注意 color 过程 origin 需要 shel ret
在树莓派上3b的操作,可以利用ssh进行登陆操作:
添加一个”Git”用户和组
adduser --system --shell /bin/bash --gecos ‘git version control by pi‘ --group --home /home/git git
passwd git
su git
增加一个空的Git仓库(Git Repository)
cd /home/git
mkdir test.git
cd test.git
git --bare init
在本地PC上的操作:
Push你的代码到Pi上
git remote add origin git@192.168.0.22 :/home/git/test.git
git add .
git commit -am "Initial"
git push origin master
在push过程中需要你提供上述git用户的密码,因此刚才设置的密码需要记住。类似这样的消息”authenticity of host …”只需要输入”yes”然后继续就可以了。
如果一切正常,你的Git仓库已经搭建在你的树莓派上了。
git clone git@192.168.0.22:/home/git/test.git
另外,git的使用见git使用教程:http://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000
标签:sys city 注意 color 过程 origin 需要 shel ret
原文地址:http://www.cnblogs.com/-jimmy-/p/6980287.html