git 跟踪提交记录
Posted zoulixiang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git 跟踪提交记录相关的知识,希望对你有一定的参考价值。
一、克隆git仓库
git clone ssh://[email protected]/home/data/repositories/git.git
二、申明使用人信息,以便跟踪提交记录
$ git config --global user.name "wy"
$ git config --global user.email "[email protected]"
三、创建和提交信息
$ mkdir wytest
[email protected] MINGW64 /g/企姆股份有限公司/服务器/wy_git (master)
$ echo "133" > wytest/1.txt
$ git add .
$ git commit -m "v1" wytest/1.txt
$ git push
$ git log *
以上是关于git 跟踪提交记录的主要内容,如果未能解决你的问题,请参考以下文章