基础环境
在linux系统基础上关闭防火墙
systemctl disable firewalld
查看防火墙状态
systemctl status firewalld
关闭安全模式,永久关闭修改:将 修改disabled
vi /etc/selinux/config
查看
git客户端
前提
1.注册github用户
2.在github上创建仓库
在Linux上
1.生成本地ssh key
复制公钥,在github 中添加ssh key 在root目录下看进行
2.登入github,点击头像选择settings
选择ssh key 将公钥复制过来
3.安装git
yum install git
4.进行认证(但不能远程连接)
ssh -T [email protected]
在本地添加远程仓库用户名
git config --global user.name 'mu-404'
在本地添加远程仓库邮箱
git config --global user.email '[email protected]'
启用默认的颜色设置
git config --global color.ui true
.查看配置
git config --list
ls .gitconfig
cat .gitconfig
从github上拉下项目,本地Git对此并没有管理该项目,需要声明
进行初始化init(就是建立本地仓库)即交给Git管理
git add 添加到暂存区,然后在提交到远程仓库。
git确认提交 接着需要确认连接仓库(同项目仓库连接一次即可,后面不用在弄)
总结
安装&连接
ssh-keygen -t rsa -C '[email protected]'
cat .ssh/id_rsa.pub
yum install git
ssh -T [email protected]
设置
git config --global user.name 'chenfuguo'
git config --global user.name 'mu-404'
git config --global user.email '[email protected]'
git config --list
从远程仓库克隆下来
git clone [email protected]:mu-404/mu_9.10.git
提交
标签:github,--,com,Linux,git,ssh,使用,config From: https://blog.csdn.net/mufg15dfg/article/details/142218406git init
git add .
git commit -m 'mu提交2.sh'
git remote add origin [email protected]/mu-404/mu_9.10.git
git push -u origin main