博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
git基础命令
阅读量:6647 次
发布时间:2019-06-25

本文共 1123 字,大约阅读时间需要 3 分钟。

Git 配置:

git config --global user.name yournamegit config --gloabl user.email youremail@qq.com

git帮助文档查看:

git config --helpgit help configman git-config

添加用户:

git config --global --add user.name yourname2

查看用户:

git config user.name(最近用户)git config --get user.namegit config --list --global(所有用户)

删除user.name的一个值

git config --global --unset user.name youname2git config --global --unset user.namegit config --global --add user.name yourname2

修改:

git config --global user.name yourname2git config --global user.name yourname3git config --global --list(查看用户)

起别名:

git config --global alias.co checkout#设置checkout的别名为cogit config --global alias.br branch#设置branch的别名为brgit config --global alias.st status#设置status的别名为stgit config --global alias.ci commit#设置commit的别名为cigit config --global alias.lol "log--oneline"#设置log--oneline一行显示的别名为lol

git基本的工作流程:

Git使用40个16进制的SHA-1 Hash来唯一标识对象。

1.blob

2.tree
3.commit
4.tag

git init:初始化一个仓库git init --bare:创建一个裸仓库git clone:克隆一个仓库工作区working directory暂缓区staging area历史区history repository

其他命令:

git add git commitgit statusgit rmgit mvgitignore git branchgit taggit checkoutgit stashgit merge

转载地址:http://ovyto.baihongyu.com/

你可能感兴趣的文章
【转载】数据库大并发操作要考虑死锁和锁的性能问题
查看>>
【String】String.format(format,args...)的使用解析
查看>>
Android内存优化(二)解析Memory Monitor、Allocation Tracker和Heap Dump
查看>>
ES6 Class基本用法
查看>>
Redis实战 内存淘汰机制
查看>>
Docker小白使用笔记
查看>>
MVC5+EF6 入门完整教程七
查看>>
什么是响应式
查看>>
C# 在PPT幻灯片中创建图表
查看>>
线性降维-笔记(1)
查看>>
网络抓包工具Wireshark和Fidder
查看>>
艾伟_转载:ASP.NET实现类似Excel的数据透视表
查看>>
一起谈.NET技术,ASP.NET Process Model之一:IIS 和 ASP.NET ISAPI
查看>>
一起谈.NET技术,.Net4.0 Parallel编程(二)Data Parallelism 中
查看>>
老顽固在13英寸苹果笔记本MacBook Air上开发C#.NET程序的感受浅谈
查看>>
黄聪:使用Python中的HTMLParser、cookielib抓取和解析网页、从HTML文档中提取链接、图像、文本、Cookies(二)...
查看>>
在DOS下写存储过程
查看>>
用纯CSS3实现Path华丽动画
查看>>
Eclipse下Tomcat配置项目调试
查看>>
jsp--page指令 九个内置对象 四种属性范围 两种跳转的区别
查看>>