赞
踩
在centos7中部署环境的第一步就是安装配置git ,本文从实战角度出发,主要完成了:
sudo yum install git
git --version
[root@localhost admin]# git --version
git version 1.8.3.1
配置之前先查看是否已经配置过
git config --list
如果没有配置东西,应该是空的。
git config --global user.name "username"
git config --global user.email "email"
变更配置
如果出现配置错误情况,可以用以下命令进行变更之前的配置,配置结束之后查看是否生效即可;
git config --global --replace-all user.email “你要替换的邮箱地址”
git config --global --replace-all user.name"你要替换的用户名"
命令:
ssh-keygen -t rsa -C "邮箱"
日志:
[root@localhost home]# ssh-keygen -t rsa -C "wusxxxxxst@163.com"
Generating public/private rsa key pair.
Enter file in which to save the key (/root/.ssh/id_rsa):
Created directory '/root/.ssh'.
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /root/.ssh/id_rsa.
Your public key has been saved in /root/.ssh/id_rsa.pub.
The key fingerprint is:
SHA256:RPho8yFUWGNiGnVsihD79/2iMsdwlqeVIVWka3Repvc wusxxxxxst@163.com
The key's randomart image is:
+---[RSA 2048]----+
| ....+*B oo |
| .. ++=o... |
| ...o =..o . o |
| .. *.+..+ + |
| ...+S+ooo . |
| ...=o+ . . |
| =.+. E|
| o + .. |
| +.. .. |
+----[SHA256]-----+
公钥存放地址:/root/.ssh/id_rsa.pub
私钥存放地址:/root/.ssh/id_rsa
公钥可以存储到git平台作为身份鉴证,便于pull与push代码;
复制公钥信息到gitee,个人信息下添加ssh公钥
添加成功
出师不利,刚开始做第一步操作就遇到了一个绊脚石
[root@localhost vue]# git pull https://gitee.com/wusuoweisong/vue_shop.git
fatal: Not a git repository (or any of the parent directories): .git
解决方法:
执行一下
git init
日志:
[root@localhost vue]# git init
Initialized empty Git repository in /home/vue/.git/
然后再执行git pull
操作,输入gitee的用户名与密码就可以将代码拉下来
美好的时光总是短暂,经过三山五关到了这最后的时刻,想看下这个文件的树形结构,凭借着我对带Linux的熟练认知,小手在键盘上录入tree
的时候,竟然意想不到的给了一个命令未找到的回复
,奈何缘浅,向来情深,还得老夫亲手将其改好;
[root@localhost src]# tree
bash: tree: command not found...
yum install tree
再去查看tree
大功告成~~~
尽管期间遇到了一丢丢的坎坷,最终还是完成这一小步,每一步的前进都是自己的成长,期待更高的峰,更远的路,更美好的期待~~~
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。