您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關(guān)如何使用Git備份Linux配置文件的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。
我們使用 Linux 服務(wù)器時(shí),有時(shí)候需要備份配置文件。傳統(tǒng)的備份方法是復(fù)制文件,改名,并在文件結(jié)尾插入一些字符。
但是,如果我們使用 Git ,我們可以很輕松的管理配置文件的備份。在這篇文章中,我將會(huì)演示如何使用 Git 來實(shí)現(xiàn)備份以及管理備份。我測試所用的環(huán)境是 CentOS 7 和 RHEL 7。
一、安裝 Git
[root@localhost ~]# yum install git
檢查Git版本
[root@localhost ~]# git --version git version 1.8.3.1 [root@localhost ~]#
設(shè)置初始參數(shù)
將如下命令中的用戶名,郵件替換成你自己的。
[root@localhost network-scripts]# git config --global user.name "your_user_name" [root@localhost network-scripts]# git config --global user.email "your_email"
二、現(xiàn)在初始化 Git 數(shù)據(jù)庫
因?yàn)槲覝?zhǔn)備備份網(wǎng)絡(luò)配置文件,所以我只需要在網(wǎng)絡(luò)配置文件的目錄初始化Git數(shù)據(jù)庫。
[root@localhost ~]# cd /etc/sysconfig/network-scripts [root@localhost network-scripts]# git init Initialized empty Git repository in /etc/sysconfig/network-scripts/.git/ [root@localhost network-scripts]#
命令行輸入 ls -a , 那么我們可以看到,“.git” 文件夾被創(chuàng)建了。
三、使用下面的命令進(jìn)行備份
[root@localhost network-scripts]# git add ifcfg-enp0s3 [root@localhost network-scripts]# [root@localhost network-scripts]# git commit ifcfg-enp0s3 [master (root-commit) 1269758] Changes on 26 Oct 2015 1 file changed, 16 insertions(+) create mode 100644 ifcfg-enp0s3 [root@localhost network-scripts]#
當(dāng)我們執(zhí)行第二個(gè)命令的時(shí)候,它會(huì)要求你輸入像 “Changes on 26 Oct 2015” 這樣的備注,然后保存文件。
使用下面的命令查看 git 日志
[root@localhost network-scripts]# git log commit 1269758e5f5b2fa3e0ad1fe507abaf73b646a33d Author: Pradeep <pradeep@linuxtechi.com> Date: Mon Oct 26 00:03:08 2015 -0400 Changes on 26 Oct 2015 [root@localhost network-scripts]#
注意:嘗試在 “ifcfg-enp0s3” 文件中插入一些無用字符。
四、從 Git 數(shù)據(jù)庫恢復(fù)網(wǎng)絡(luò)配置文件
[root@localhost network-scripts]# git reset --hard 1269758e5f5b2fa3e0ad1fe507abaf73b646a33d HEAD is now at 1269758 Changes on 26 Oct 2015 [root@localhost network-scripts]#
使用與上邊相同的 git id,你安裝的不同,git 的 id 也不同。
驗(yàn)證從 git 數(shù)據(jù)庫恢復(fù)的文件是否正確。
感謝各位的閱讀!關(guān)于“如何使用Git備份Linux配置文件”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。