安裝:
[新增鏈結描述]
/git-scm.com/downloads)
檢視git 版本
git --version
第四步:全域性配置使用者名稱和郵箱
git config --global user.name "姓名"
git config --global user.email "[email protected]"
本地操作:
第一步:建立資料夾(右鍵 /mkdir 資料夾)
第二步:進入目錄(雙擊 / cd 資料夾)–返回上級目錄cd …/
第三步:初始化版本庫
git init
生成 .git 隱藏資料夾--版本快照
第四步:新建檔案 1.txt(右鍵 ./ vi)寫入內容
第五步:新增暫存區 + 版本庫
git add .
.當前目錄下所有檔案 加入暫存區
git commit -m "版本描述" 新增到版本庫
第六步:寫入內容 —> 新增暫存區 —> 版本庫
第七步:回退版本
git reflog 檢視版本記錄
681db2a(head ->master) head@:commit:第二天工作,修改首頁頭部
6ed8c07 head@: commit(initial):第一天工作,首頁頭部
git reset --hard commitid(681db2a) 回退版本
Git的基本操作
git能非常友好幫我們管理源 功能非常強大,這裡只簡單記錄下最基本的一些常用操作。首先註冊乙個github賬號,然後建立倉庫,這些是最基本的。下面是乙個栗子 建立完倉庫後,其實github下面也有提示你如何進行操作 如我的放置源 的路徑在 d gitdemo 下面存放都是專案源 接著開啟git ba...
git的基本操作
git常用知識 centos安裝git 將乙個專案push到git 1 設定使用者 git config global user.email 631801509 qq.com git config global user.name zhuyuehao 1 先在網上新建乙個空的遠端倉庫 2 本地工程目...
Git的基本操作
git config global user.name runoob git config global user.email test runoob.com git config global core.editor vim 指定文字編輯器 git config list 檢視配置資訊 初始化 g...