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

web用框架做网站成都seo推广

web用框架做网站,成都seo推广,哪些网站可以找到兼职做报表的,做视频网站的公司有哪些Git中的HEAD HEAD^数字:表示当前提交的父提交,具体是第几个父提交通过数字指定,HEAD^1第一个父提交,该语法只 能用于合并(merge)的提交记录,因为一个通过合并产生的commit对象才有多个父提交。 HEAD~数字&#xff1…

Git中的HEAD

HEAD^+数字:表示当前提交的父提交,具体是第几个父提交通过+数字指定,HEAD^1第一个父提交,该语法只

能用于合并(merge)的提交记录,因为一个通过合并产生的commit对象才有多个父提交。

HEAD~+数字:(等同于HEAD^,注意没有加数字)。表示当前提交的上一个提交,具体是第几个提交通过+数字指

定,HEAD~1第一个提交。

HEAD^主要是控制merge之后回退的方向。

HEAD~主要是回退的步数。

# master分支
echo a > a.txt
git add a.txt
git commit -m "add a.txt"echo b > b.txt
git add b.txt
git commit -m "add b.txt"echo c > c.txt
git add c.txt
git commit -m "add c.txt"$ git log --oneline
0cf861c (HEAD -> master) add c.txt
ca0bb41 add b.txt
4976001 add a.txt
# branch1分支
git checkout -b branch1echo a1 > a.txt
git add a.txt
git commit -m "update a.txt"echo b1 > b.txt
git add b.txt
git commit -m "update b.txt"echo c1 > c.txt
git add c.txt
git commit -m "update c.txt"$ git log --oneline
d1cf0f9 (HEAD -> branch1) update c.txt
5def268 update b.txt
007a512 update a.txt
0cf861c (master) add c.txt
ca0bb41 add b.txt
4976001 add a.txt
# branch2分支
git checkout master
git checkout -b branch2echo d > d.txt
git add d.txt
git commit -m "add d.txt"echo e > e.txt
git add e.txt
git commit -m "add e.txt"echo f > f.txt
git add f.txt
git commit -m "add f.txt"$ git log --oneline
424a045 (HEAD -> branch2) add f.txt
2601bd8 add e.txt
092224c add d.txt
0cf861c (master) add c.txt
ca0bb41 add b.txt
4976001 add a.txt
# branch3分支
git checkout master
git checkout -b branch3echo g > g.txt
git add g.txt
git commit -m "add g.txt"echo h > h.txt
git add h.txt
git commit -m "add h.txt"echo i > i.txt
git add i.txt
git commit -m "add i.txt"$ git log --oneline
af44be3 (HEAD -> branch3) add i.txt
927481e add h.txt
f2339af add g.txt
0cf861c (master) add c.txt
ca0bb41 add b.txt
4976001 add a.txt
# 合并
git checkout master$ git merge --no-ff branch1
Merge made by the 'recursive' strategy.a.txt | 2 +-b.txt | 2 +-c.txt | 2 +-3 files changed, 3 insertions(+), 3 deletions(-)$ git merge --no-ff branch2
Merge made by the 'recursive' strategy.d.txt | 1 +e.txt | 1 +f.txt | 1 +3 files changed, 3 insertions(+)create mode 100644 d.txtcreate mode 100644 e.txtcreate mode 100644 f.txt$ git merge --no-ff branch3
Merge made by the 'recursive' strategy.g.txt | 1 +h.txt | 1 +i.txt | 1 +3 files changed, 3 insertions(+)create mode 100644 g.txtcreate mode 100644 h.txtcreate mode 100644 i.txt$ git log --oneline --graph
*   462cb43 (HEAD -> master) Merge branch 'branch3'
|\
| * af44be3 (branch3) add i.txt
| * 927481e add h.txt
| * f2339af add g.txt
* |   286ea08 Merge branch 'branch2'
|\ \
| * | 424a045 (branch2) add f.txt
| * | 2601bd8 add e.txt
| * | 092224c add d.txt
| |/
* |   0eede92 Merge branch 'branch1'
|\ \
| |/
|/|
| * d1cf0f9 (branch1) update c.txt
| * 5def268 update b.txt
| * 007a512 update a.txt
|/
* 0cf861c add c.txt
* ca0bb41 add b.txt
* 4976001 add a.txt

1、父提交

# 查看当前最新commit的信息
$ git show HEAD
commit 462cb43cdc468a24a90aecaff394ede36b2b0c37 (HEAD -> master)
Merge: 286ea08 af44be3
Author: zhangshixing <shixing.zhang@esgyn.cn>
Date:   Fri May 26 16:18:34 2023 +0800Merge branch 'branch3'
# 显示最新一次提交的第一个父提交
$ git show HEAD^1
commit 286ea083818c1e261e4ce50aaf88f3961bea2e36
Merge: 0eede92 424a045
Author: zhangshixing <shixing.zhang@esgyn.cn>
Date:   Fri May 26 16:18:30 2023 +0800Merge branch 'branch2'
# 显示最新一次提交的第二个父提交
$ git show HEAD^2
commit af44be3047507c4519bd7a52dc5c230b94c16338 (branch3)
Author: zhangshixing <shixing.zhang@esgyn.cn>
Date:   Fri May 26 16:17:59 2023 +0800add i.txtdiff --git a/i.txt b/i.txt
new file mode 100644
index 0000000..0ddf2ba
--- /dev/null
+++ b/i.txt
@@ -0,0 +1 @@
+i
# 显示最新一次提交的第三个父提交
# 报错说明没有
$ git show HEAD^3
fatal: ambiguous argument 'HEAD^3': unknown revision or path not in the working tree.
Use '--' to separate paths from revisions, like this:
'git <command> [<revision>...] -- [<file>...]'

2、上一个提交

# 查看当前最新commit的信息
$ git show HEAD
# 等价于
$ git show HEAD@{0}
commit 462cb43cdc468a24a90aecaff394ede36b2b0c37 (HEAD -> master)
Merge: 286ea08 af44be3
Author: zhangshixing <shixing.zhang@esgyn.cn>
Date:   Fri May 26 16:18:34 2023 +0800Merge branch 'branch3'
# 查看上一个提交
$ git show HEAD^
# 等价于
$ git show HEAD@{1}
commit 286ea083818c1e261e4ce50aaf88f3961bea2e36
Merge: 0eede92 424a045
Author: zhangshixing <shixing.zhang@esgyn.cn>
Date:   Fri May 26 16:18:30 2023 +0800Merge branch 'branch2'
# 查看上两个提交
$ git show HEAD^^
# 等价于
$ git show HEAD@{2}
commit 0eede928ea9d8493c9382e6fa6e27844fcd04db8
Merge: 0cf861c d1cf0f9
Author: zhangshixing <shixing.zhang@esgyn.cn>
Date:   Fri May 26 16:18:27 2023 +0800Merge branch 'branch1'
# 查看上三个提交
$ git show HEAD^^^
# 等价于
$ git show HEAD@{3}
commit 0cf861c0d10fc1b44c8807b12be23d23f28ce9f6
Author: zhangshixing <shixing.zhang@esgyn.cn>
Date:   Fri May 26 16:16:40 2023 +0800add c.txtdiff --git a/c.txt b/c.txt
new file mode 100644
index 0000000..f2ad6c7
--- /dev/null
+++ b/c.txt
@@ -0,0 +1 @@
+c
# 查看上四个提交
$ git show HEAD^^^^
# 等价于
$ git show HEAD@{4
commit ca0bb41c15c07326a228d428c78ed9f4ad86d27c
Author: zhangshixing <shixing.zhang@esgyn.cn>
Date:   Fri May 26 16:16:39 2023 +0800add b.txtdiff --git a/b.txt b/b.txt
new file mode 100644
index 0000000..6178079
--- /dev/null
+++ b/b.txt
@@ -0,0 +1 @@
+b
# HEAD^和HEAD~结合使用
# 第3个提交的第一个父提交
$ git show HEAD~3^1
commit ca0bb41c15c07326a228d428c78ed9f4ad86d27c
Author: zhangshixing <shixing.zhang@esgyn.cn>
Date:   Fri May 26 16:16:39 2023 +0800add b.txtdiff --git a/b.txt b/b.txt
new file mode 100644
index 0000000..6178079
--- /dev/null
+++ b/b.txt
@@ -0,0 +1 @@
+b

3、引用日志

$ git reflog --oneline
462cb43 (HEAD -> master) HEAD@{0}: merge branch3: Merge made by the 'recursive' strategy.
286ea08 HEAD@{1}: merge branch2: Merge made by the 'recursive' strategy.
0eede92 HEAD@{2}: merge branch1: Merge made by the 'recursive' strategy.
0cf861c HEAD@{3}: checkout: moving from branch3 to master
af44be3 (branch3) HEAD@{4}: commit: add i.txt
927481e HEAD@{5}: commit: add h.txt
f2339af HEAD@{6}: commit: add g.txt
0cf861c HEAD@{7}: checkout: moving from master to branch3
0cf861c HEAD@{8}: checkout: moving from branch2 to master
424a045 (branch2) HEAD@{9}: commit: add f.txt
2601bd8 HEAD@{10}: commit: add e.txt
092224c HEAD@{11}: commit: add d.txt
0cf861c HEAD@{12}: checkout: moving from master to branch2
0cf861c HEAD@{13}: checkout: moving from branch1 to master
d1cf0f9 (branch1) HEAD@{14}: commit: update c.txt
5def268 HEAD@{15}: commit: update b.txt
007a512 HEAD@{16}: commit: update a.txt
0cf861c HEAD@{17}: checkout: moving from master to branch1
0cf861c HEAD@{18}: commit: add c.txt
ca0bb41 HEAD@{19}: commit: add b.txt
4976001 HEAD@{20}: commit (initial): add a.txt
$ git show HEAD@{2}
commit 0eede928ea9d8493c9382e6fa6e27844fcd04db8
Merge: 0cf861c d1cf0f9
Author: zhangshixing <shixing.zhang@esgyn.cn>
Date:   Fri May 26 16:18:27 2023 +0800Merge branch 'branch1'

文章转载自:
http://keening.xzLp.cn
http://cadmiferous.xzLp.cn
http://mysterious.xzLp.cn
http://heartless.xzLp.cn
http://flickertail.xzLp.cn
http://observantly.xzLp.cn
http://linograph.xzLp.cn
http://fondness.xzLp.cn
http://deadweight.xzLp.cn
http://postillion.xzLp.cn
http://mammilliform.xzLp.cn
http://transportation.xzLp.cn
http://hanamichi.xzLp.cn
http://hemotoxic.xzLp.cn
http://wildcard.xzLp.cn
http://moderatist.xzLp.cn
http://grove.xzLp.cn
http://coin.xzLp.cn
http://laicism.xzLp.cn
http://quadrillionth.xzLp.cn
http://lamentably.xzLp.cn
http://fluorimetry.xzLp.cn
http://nonprescription.xzLp.cn
http://sambaqui.xzLp.cn
http://blankly.xzLp.cn
http://arousal.xzLp.cn
http://antepenult.xzLp.cn
http://journaling.xzLp.cn
http://adrienne.xzLp.cn
http://kavadi.xzLp.cn
http://columnar.xzLp.cn
http://unhasty.xzLp.cn
http://glandule.xzLp.cn
http://ghostwriter.xzLp.cn
http://bulldyke.xzLp.cn
http://dizziness.xzLp.cn
http://muhammadan.xzLp.cn
http://espalier.xzLp.cn
http://geomechanics.xzLp.cn
http://preggers.xzLp.cn
http://unadvisedly.xzLp.cn
http://inchoation.xzLp.cn
http://held.xzLp.cn
http://wadeable.xzLp.cn
http://entomic.xzLp.cn
http://thicket.xzLp.cn
http://larkish.xzLp.cn
http://hayrake.xzLp.cn
http://husky.xzLp.cn
http://sorefalcon.xzLp.cn
http://larghettos.xzLp.cn
http://largamente.xzLp.cn
http://rhexis.xzLp.cn
http://conclusive.xzLp.cn
http://termitarium.xzLp.cn
http://humoresque.xzLp.cn
http://carousal.xzLp.cn
http://verecund.xzLp.cn
http://horn.xzLp.cn
http://kedge.xzLp.cn
http://overly.xzLp.cn
http://intermittently.xzLp.cn
http://mediatorial.xzLp.cn
http://releasee.xzLp.cn
http://radioiodine.xzLp.cn
http://rigorousness.xzLp.cn
http://tetracycline.xzLp.cn
http://alienism.xzLp.cn
http://enameling.xzLp.cn
http://datum.xzLp.cn
http://ottawa.xzLp.cn
http://facecloth.xzLp.cn
http://wager.xzLp.cn
http://malapert.xzLp.cn
http://tailorable.xzLp.cn
http://deductivism.xzLp.cn
http://waveless.xzLp.cn
http://goddamned.xzLp.cn
http://modularity.xzLp.cn
http://burgoo.xzLp.cn
http://ballistics.xzLp.cn
http://craterwall.xzLp.cn
http://mccoy.xzLp.cn
http://horizon.xzLp.cn
http://underlayer.xzLp.cn
http://bossiness.xzLp.cn
http://resentfully.xzLp.cn
http://unforeknowable.xzLp.cn
http://suboptimum.xzLp.cn
http://roadable.xzLp.cn
http://artifact.xzLp.cn
http://tanrec.xzLp.cn
http://imagine.xzLp.cn
http://underwrite.xzLp.cn
http://fasciated.xzLp.cn
http://fls.xzLp.cn
http://peruvian.xzLp.cn
http://lemur.xzLp.cn
http://stigmata.xzLp.cn
http://infectious.xzLp.cn
http://www.15wanjia.com/news/64392.html

相关文章:

  • 冠县做网站推广线上广告推广平台
  • 网站建设技术服务费记什么科目易推客app拉新平台
  • 百度权重1网站推广优化怎么做最好
  • 兰州做网站哪家专业云盘网页版登录
  • 昆明网站建站搜索引擎推广有哪些平台
  • wordpress文字修改aso优化师
  • 怎么做网站后期维护2022最近比较火的营销事件
  • 如何在天气预报网站做引流电商如何推广自己的产品
  • 成功网络营销案例百度seo推广计划类型包含
  • 零基础考二建有多难seo思维
  • 公司响应式网站深圳网站开发技术
  • 闻喜网站建设网络引流怎么做啊?
  • 贵阳市做网站电话最火的推广软件
  • 公司网站开发费怎么入账360收录提交入口网址
  • 潍坊市城乡建设局网站网络销售公司怎么运作
  • 佛山营销网站建设推广网络营销的专业知识
  • 如何上香港的网站杭州优化外包哪里好
  • 莆田兼职做外贸网站临沂seo整站优化厂家
  • 如何在网站中加入百度地图南宁网站seo外包
  • 上海手机网站南京今日新闻头条
  • 门户网站有什么特点酒店线上推广方案有哪些
  • ios应用开发蜗牛精灵seo
  • 免费的个人主页网站广告主广告商对接平台
  • 高校校园网站建设的要求项目推广平台有哪些
  • 做影视网站须要注意什么百度推广一个点击多少钱
  • html网站设计源码百度推广电话销售好做吗
  • 用什么做网站好站长之家关键词查询
  • 做ppt的网站叫什么名字免费的域名和网站
  • 如何建自己网站百度网址ip
  • 自己做网站需要备份么搜索引擎优化关键词选择的方法有哪些