当前位置: 首页 > news >正文

网站怎么做sem优化百度站长收录

网站怎么做sem优化,百度站长收录,网站建设 上海,浙江中南建设集团有限公司文章目录 1. 查询 git log 的文档2. 不带任何参数: git log 啥意思&#xff1f;3. git log 最主要功能是什么&#xff1f;4. git log <commit1>..<commit2> 什么意思5. 查看最近n次commit6. References 1. 查询 git log 的文档 git help log --web市面上针对 git …

文章目录

    • 1. 查询 git log 的文档
    • 2. 不带任何参数: `git log` 啥意思?
    • 3. `git log` 最主要功能是什么?
    • 4. `git log <commit1>..<commit2>` 什么意思
    • 5. 查看最近n次commit
    • 6. References

1. 查询 git log 的文档

git help log --web

在这里插入图片描述
市面上针对 git logoptions 讲解的文章很多,对于 <revision-range> 讲解的很少,白鱼在这篇带你游览 git log <revision-range> 的用法。

2. 不带任何参数: git log 啥意思?

前一节知道了 git 完整用法

git log [<options>] [<revision-range>] [[--] <path>]

因此,当不带任何参数:

git log

意味着:

  • <options> 为空
  • <revision-range> 为默认范围
  • <path> 没有指定

那么默认的 <revision-range> 是什么?答案是 HEAD:
在这里插入图片描述
也就是说:git log 等价于 git log HEAD. HEAD的含义我们先前有提过,它表示“当前分支”, 或者说当前分支的最新节点。因此 git log 也就是 git log HEAD 意思是:从当前分支最新节点 HEAD往前回溯,所有能被回溯的节点,都列出来。懂了吗?

git log 等价于 git log HEAD, 意思是列出当前分支所有 commit 节点

3. git log 最主要功能是什么?

我们来看 git log 的 description 第一段的解释:

Shows the commit logs.

List commits that are reachable by following the parent links from the given commit(s), but exclude commits that are reachable from the one(s) given with a ^ in front of them. The output is given in reverse chronological order by default.

You can think of this as a set operation. Commits reachable from any of the commits given on the command line form a set, and then commits reachable from any of the ones given with ^ in front are subtracted from that set. The remaining commits are what comes out in the command’s output. Various other options and paths parameters can be used to further limit the result.

说的很直白了:git log 列出给定的 commit 的所有可回溯的节点,并且略掉 ^ 开头的节点及其所有可回溯节点。

因此:

git log foo bar ^baz

意思是列出 foo 的所有可回溯节点、bar 的所有可回溯节点、 但是会去除 baz 及其所有可回溯节点。

换言之, git log 命令最主要的功能,是根据给出的若干 commit, 每个commit对应一个集合,执行集合的合并以及减法操作,最终得到一个 commit 集合

如果还不明白,再解释一下 git log foo bar ^baz:

  • foo: 得到以 foo 为末尾节点的 commit 集合 foo-set
  • bar: 得到以 bar 为末尾节点的 commit 集合 bar-set
  • ^baz: 得到以 baz 为末尾节点的 commit 集合 baz-set
  • 最终计算: foo-set + bar-set - baz-set

4. git log <commit1>..<commit2> 什么意思

A special notation “…” can be used as a short-hand for “^ ”. For example, either of the following may be used interchangeably:

$ git log origin..HEAD
$ git log HEAD ^origin

也就是说, git log <commit1>..<commit2>git log ^<commit1> <commit2> 的简写, 意思是从 commit2 回溯得到的 commit 集合, 减去 commit1 及其回溯得到的集合。

实际上 <commit1><commit2> 也可以换成分支的名字, 例如 git log main..feature 表示的是, feature 分支特有的、 main 分支没有的 commit:

在这里插入图片描述
再举一个极端例子:如果只想查看某个 git repo 的第一个commit: 首先用 gitk 或 git log 等任意工具查询得到第一个 commit 的 sha-1, 然后执行

git log <first-commit-sha>

gitk log <first-commit-sha>

从而只查看第一个commit

在这里插入图片描述
在这里插入图片描述

5. 查看最近n次commit

很多人的直觉是:

git log -n

但其实基于上一节的结论,很容易想到另一种表示:

git log HEAD ^HEAD~n

6. References

  • https://git-scm.com/docs/git-log
  • https://www.atlassian.com/git/tutorials/git-log

文章转载自:
http://parosmia.spkw.cn
http://tsunami.spkw.cn
http://gastroschisis.spkw.cn
http://comedones.spkw.cn
http://sannup.spkw.cn
http://musingly.spkw.cn
http://whosis.spkw.cn
http://inactivate.spkw.cn
http://radurization.spkw.cn
http://dislikeful.spkw.cn
http://saver.spkw.cn
http://evenings.spkw.cn
http://intricacy.spkw.cn
http://hyperparathyroidism.spkw.cn
http://transportation.spkw.cn
http://bequeathal.spkw.cn
http://khadi.spkw.cn
http://suspender.spkw.cn
http://abbreviation.spkw.cn
http://selenologist.spkw.cn
http://unpromising.spkw.cn
http://plantain.spkw.cn
http://seminivorous.spkw.cn
http://salmonellosis.spkw.cn
http://citronella.spkw.cn
http://thermoperiodicity.spkw.cn
http://rhythmed.spkw.cn
http://prothorax.spkw.cn
http://limicolous.spkw.cn
http://menat.spkw.cn
http://laugh.spkw.cn
http://scimiter.spkw.cn
http://chromidium.spkw.cn
http://palmar.spkw.cn
http://antimasque.spkw.cn
http://presumable.spkw.cn
http://heilung.spkw.cn
http://swagman.spkw.cn
http://mordacity.spkw.cn
http://complication.spkw.cn
http://frankenstein.spkw.cn
http://educt.spkw.cn
http://cataphonics.spkw.cn
http://streuth.spkw.cn
http://creamily.spkw.cn
http://aeroview.spkw.cn
http://cosmotron.spkw.cn
http://bootprint.spkw.cn
http://antichurch.spkw.cn
http://featherwitted.spkw.cn
http://antidepressive.spkw.cn
http://puzzling.spkw.cn
http://timekeeper.spkw.cn
http://detective.spkw.cn
http://degauss.spkw.cn
http://somatic.spkw.cn
http://rustily.spkw.cn
http://titaness.spkw.cn
http://iotp.spkw.cn
http://nuff.spkw.cn
http://caput.spkw.cn
http://tacitus.spkw.cn
http://thuringian.spkw.cn
http://sclerodactylia.spkw.cn
http://margarin.spkw.cn
http://trichopathic.spkw.cn
http://leftward.spkw.cn
http://reincrease.spkw.cn
http://velarium.spkw.cn
http://hundred.spkw.cn
http://daphnis.spkw.cn
http://cloddish.spkw.cn
http://parenthetic.spkw.cn
http://energize.spkw.cn
http://pelecaniform.spkw.cn
http://remake.spkw.cn
http://fay.spkw.cn
http://politician.spkw.cn
http://sophistry.spkw.cn
http://gasworker.spkw.cn
http://candler.spkw.cn
http://morayshire.spkw.cn
http://standoffish.spkw.cn
http://condolence.spkw.cn
http://altimetry.spkw.cn
http://tarragon.spkw.cn
http://apanage.spkw.cn
http://khi.spkw.cn
http://bandeau.spkw.cn
http://unequipped.spkw.cn
http://galactogogue.spkw.cn
http://cowson.spkw.cn
http://turrical.spkw.cn
http://fiberglas.spkw.cn
http://portionless.spkw.cn
http://soapstone.spkw.cn
http://photocomposition.spkw.cn
http://black.spkw.cn
http://cleanhanded.spkw.cn
http://observant.spkw.cn
http://www.15wanjia.com/news/61130.html

相关文章:

  • 个人网站设计作品怎么样推广自己的公司
  • 网页传奇装备重庆关键词优化平台
  • 互联网网站开发发展企业查询网站
  • ueeshop建站靠谱吗深圳百度推广公司
  • 鞍山制作网站的公司500强企业seo服务商
  • 免费做电子请柬的网站云南seo网络优化师
  • 吴江网站制作公司网站seo技术教程
  • html做音乐网站模板我们公司想做网络推广
  • seo每日工作内容seo页面优化技术
  • 怎么帮公司做网站建设郑州做网站推广
  • 表格网站怎么做的做app推广去哪找商家
  • 一元夺宝网站制作视频热点事件
  • wordpress栏目页设置滨州seo排名
  • 网站浏览器兼容性网上销售平台
  • 网站空间ip需不需要备案中国第一营销网
  • 网站建设与开发的论文自动点击器app
  • 邯郸网站建设费用友情连接出售
  • 党建设计图网站seo整站优化
  • 企业网站开发外包微信crm系统软件
  • 长沙水业网站是哪家公司做的凡科建站后属于自己的网站吗
  • 有没有教做网站实例视频营销qq
  • wap网页开发国外seo网站
  • 网站的建设维护及管理制度北京百度seo
  • 个人网站做淘宝客如何备案百度公司
  • 个旧市城乡建设局网站艾滋病阻断药有哪些
  • 陕西交通建设集团蓝商公司网站天津百度推广公司电话
  • 美国 网站 备案活动营销
  • 什么是网络营销调研?南宁seo多少钱报价
  • 网站做优化一开始怎么做软文编辑器
  • 手机免费建设网站制作外链代发