步骤:
1、传压缩包
2、解压unzip + 要解压的压缩包
3、初始化:git init
4、查看
ls -a git
5、git add . 放到暂存区
6、提交 git commit -m ”提示信息“
7、查看:git reflog
8、创建仓库在git官网上
9、复制git官网上第一个
10、git remote -v 是否与其他仓库做没有做关联
11、git remote add origin 复制下面最后倒数第二行到这里来
12、还原 rm -rf /root/ssh/
13、ssh-keygen
14、cat /root/.ssh/id-sar.put
15、复制公钥
16、上传 git push -u origin "master"
17、git branch dev 创建分支
18、git checkout dev 切换dev
19、git push -u --all 上传到分支
在另外一台虚拟机上部署
20、yum -y install httpd -y
21、git clone 复制ssh
22、cd ops
23、mv /var/www/html
24、systemctl start httpd