LinuxDeploy CentOS7安装Git

安装

1
yum install git

查看安装成功

1
git --version
1
2
[root@localhost ~]# git --version
git version 1.8.3.1

配置基本信息

1
2
git config --global user.name "用户名"
git config --global user.email "邮箱"

查看用户名:

1
git config --list

参考链接

https://www.jianshu.com/p/e6ecd86397fb

安装nano

1
sudo yum install nano

查看安装效果:

1
nano --version
1
2
3
4
5
6
7
[root@localhost ~]# nano --version
GNU nano 版本2.3.1 (编译于12:17:13, Apr 28 2015)
(C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
2008, 2009 Free Software Foundation, Inc.
电子邮件: nano@nano-editor.org 网页: http://www.nano-editor.org/
编译选项: --enable-color --enable-extra --enable-multibuffer --enable-nanorc --enable-utf8
[root@localhost ~]#