-
git 安装及配置
yum install -y git # 安装git useradd sxw passwd sxw #添加git用户及密码 mkdir -p repos/app.git #创建本地git 目录 git --bare init # 初始化本地仓库 git su - git # 进入git环境 git clone git@10.10.95.2:/home/git/repos/app.git # 获取git服务器代码到本地 git add . #把文件添加到本地 git status #查看本地提交到本地git 库中的状态 git commit -m “xxx” # 文件提交到本地文件库中 git push origin master # 提交本地git 库到git 服务器 ssh-keygen # 直接回车生成密钥盾,并将id_rsa.pub的公钥添加到git服务器 /home/git/.ssh/authorized_keys #将公钥添加到该文件 git branch # 查看分支 git branch jek-test # 创建分支 git checkout jek-test # 切换分支 touch a.html #分支创建文件 git add . # 添加到本地 git commit -m "" # 本地文件提交到仓库 git remote add origin git@10.10.95.2:/home/git/repos/wordpress #添加本地与远程仓库关联 git push origin jek-test # 推送到git 服务器