标签:name hce pos existing style targe 命令行 tor mail
1 git config --global user.name "Tsui"
2 git config --global user.email "tsuish@qq.com"
然后查看配置信息:
1 git config --list
进入git的项目目录:
1 C:\Users\Administrator>cd /d D:\workspace\Git_Myproject
2 D:\workspace\Git_Myproject>
初始化git:
1 D:\workspace\Git_Myproject>git init
2 Reinitialized existing Git repository in D:/workspace/Git_Myproject/.git/
git status:
查看git的当前工作状态
1 git log
2 git log --oneline
3 //--oneline:快照的精简版本
4 git log --help
5 //git log的帮助文档,会在浏览器中打开
6 git log --graph --all
7 //--graph表示图形化显示log
8 //--all表示显示所有的分支
9 D:\workspace\Git_Myproject>git log --oneline --graph --all
10 * 5b6b147 (HEAD -> master) modify a file cshcesh.txt v0.3
11 | * bef58a0 (feature) add a file testspool.txt featurev0.2
12 | * 220fa33 add a file test.txt featurev0.1
13 |/
14 * 1346315 add a file cshcesh.txt v0.2
15 * 62a8bde add two file v0.1
标签:name hce pos existing style targe 命令行 tor mail
原文地址:https://www.cnblogs.com/cuishh/p/11200558.html