1、安装git
sudo apt-get install git
2、创建github帐号
3、Linux创建SSH密钥:
ssh-keygen //一直默认
4、将公钥加入到Github账户信息Account Settings -> SSH Key
5、测试验证是否成功
ssh -T [email protected]
6、同步github到本地
git clone https://github.com/xxx/xxx.git
7、配置个人信息
git config --global user.name ‘xxx‘
git config --global user.email ‘[email protected]‘
8、创建git仓库
git init
9、向github提交
git add *
git commit -m "xxxxxx"
git push origin master
时间: 2024-10-12 18:14:54