git config --global user.name "liang" 設定使用者名為liang
git config --global user.name 檢視當前使用者名稱
git config --global user.email "[email protected]" 設定郵箱為[email protected]
git config --global user.email 檢視當前郵箱
git init 建立本地**倉庫 要先進入專案的目錄下
git add build.gradle 新增單個檔案
git add . 新增當前目錄下的所有檔案
git commit -m "first commit." 提交
注意:一定要有-m引數,後面的是描述資訊,否則認定不合法
Git版本控制工具初識
git使用教程 初次使用git前的配置 需要配置一下,讓它知道操作的主人是誰。因為每一次提交都會用到這些資訊。一旦確定之後不可更改。在命令列模式下輸入以下命令 git config global user.name 使用者名稱 你的使用者名稱,相當於暱稱 git config global user...
git時間 初識版本控制工具
git是乙個開源的分布式版本控制工具,它的開發者就是鼎鼎大名linux作業系統的作者 linus torvalds。git被開發出來的初衷是為了更好的管理linux核心,而現在卻早已被廣泛應用於全球各種中小型的專案中。今天主要講解一下它最基本的用法,那麼就從安裝git開始吧。1 安裝 git 2 建...
(一)Git時間 初識版本控制工具
配置一下你的身份 git config global use.name douzi git config global use.email jdouzi qq.com 可以用 git config global use.name git config global use.email 檢視是否配置成...