1. 程式人生 > >git 跟蹤提交記錄

git 跟蹤提交記錄

.com oba admin repos 使用 one bubuko config mit

一、克隆git倉庫

git clone ssh://hwl@xxx/home/data/repositories/git.git

二、申明使用人信息,以便跟蹤提交記錄


$ git config --global user.name "wy"


$ git config --global user.email "[email protected]"

三、創建和提交信息

$ mkdir wytest

admin@admin-PC MINGW64 /g/企姆股份有限公司/服務器/wy_git (master)
$ echo "133" > wytest/1.txt

$ git add .

$ git commit -m "v1" wytest/1.txt

$ git push

$ git log *

技術分享圖片

git 跟蹤提交記錄