git的经常使用命令

Posted claireyuancy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git的经常使用命令相关的知识,希望对你有一定的参考价值。

$ git config --global user.name "姓名"

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

$ git config -l    

查看配置信息

$ git commit -m "凝视"   

将暂存区内容提交至代码库


$ git commit --amend

改动最后一次提交的凝视



$ git init --bare

初始化空白的代码仓库。协同开发使用



$ git status

查看全部文件状态  




$ git status 文件名称

查看指定文件的状态



$ git log

查看版本号库日志 按字母 q 能够退出(关闭中文输入法)


$ git log 文件名称

查看指定文件的修订记录





以上是关于git的经常使用命令的主要内容,如果未能解决你的问题,请参考以下文章

markdown Git经常使用的命令

Git经常使用命令

Git经常使用命令总结

sh Git经常使用命令

git的经常使用命令

Git flow的分支模型与及经常使用命令简单介绍