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

保险官方网站steam交易链接是什么

保险官方网站,steam交易链接是什么,科学做视频网站,深圳o2o网站建设首先&#xff0c;我们得了解git reset命令的形式之一&#xff1a; git reset [<mode>] [<commit>] 此命令的作用是恢复HEAD分支到<commit>位置&#xff0c;并根据<mode>决定是否恢复index file和working tree。恢复是指将staging area和working tree…

首先,我们得了解git reset命令的形式之一:

git reset [<mode>] [<commit>]

此命令的作用是恢复HEAD分支到<commit>位置,并根据<mode>决定是否恢复index file和working tree。恢复是指将staging area和working tree的状态还原到commit的状态(如果不指定commit,则默认为last commit)。如果没有pick哪个mode,即omitted mode,则mode默认为–mixed。<commit>可以为commit的hash id或引用值。

此外,mode还有两个值:–soft和–hard。

–soft不会改动(touch) index file和working tree,但是会撤销head到commit之间的all history,这是三个模式所共有的作用。

$ git statusOn branch mainChanges not staged for commit:(use "git add <file>..." to update what will be committed)(use "git restore <file>..." to discard changes in working directory)​    modified:  README.mdno changes added to commit (use "git add" and/or "git commit -a")$ git add README.md$ git statusOn branch mainChanges to be committed:(use "git restore --staged <file>..." to unstage)​    modified:  README.md$ git log --graph --oneline\* 0a071ac (HEAD -> main) A\* 0c888f4 Initial Commit$ git reset --soft 0c888f4$ git statusOn branch mainChanges to be committed:(use "git restore --staged <file>..." to unstage)​    modified:  README.md$ git log --graph --oneline\* 0c888f4 (HEAD -> main) Initial Commit

可以观察到commit A的committed changes都reset为staged changes to be committed。原本已经stage等待commit的changes不会被reset。HEAD指向<commit>,HEAD到<commit>的提交都会被undo。

–mixed在–soft的基础上,进一步reset,它会恢复index到<commit>时的状态。已经在index中的changes会reset回working tree,note that modify working tree≠reset working tree。

$ git reset 0c888f4Unstaged changes after reset:M    README.md

git reset会报告影响到的changes。

–hard会在–mixed的基础上恢复working tree的状态。被跟踪的changes会被丢弃。

Any untracked files or directories in the way of writing any tracked files are simply deleted.

Git文档中的这句话我不是太理解,通过询问ChatGPT,翻译为:任何阻碍跟踪文件的写入的未跟踪文件或目录将被删除。

下面是一个Stack Overflow对该疑问的解释代码例子:

There is a case in which git reset --hard has effects on untracked files.$ touch a.txt$ git add .$ git commit -m'A'$ echo hello >> a.txt$ git add .$ git commit -m'B'$ git rm a.txt$ echo world > a.txt$ git status -sThe status output isD  a.txt?? a.txtThe a.txt in the index is removed and the one in the work tree is untracked.$ cat a.txtworldReset in the mode of --hard,$ git reset --hard$ cat a.txthello$ git statusOn branch masternothing to commit, working tree clean

The untracked a.txt in the work tree is deleted. But we could also say it’s been overwritten with the tracked a.txt in HEAD.


文章转载自:
http://dinncochirurgeon.tpps.cn
http://dinncointervolve.tpps.cn
http://dinncominux.tpps.cn
http://dinncoaspermous.tpps.cn
http://dinncoseise.tpps.cn
http://dinncodeaminize.tpps.cn
http://dinncoperspire.tpps.cn
http://dinncopfennig.tpps.cn
http://dinncofludrocortisone.tpps.cn
http://dinncoinsalubrious.tpps.cn
http://dinncoambrotype.tpps.cn
http://dinncobromidic.tpps.cn
http://dinncosquarish.tpps.cn
http://dinncofolsom.tpps.cn
http://dinncodisputer.tpps.cn
http://dinncopsittacosis.tpps.cn
http://dinncoetherization.tpps.cn
http://dinncochace.tpps.cn
http://dinncoormazd.tpps.cn
http://dinncoanagrammatism.tpps.cn
http://dinncobiauriculate.tpps.cn
http://dinncosaturnism.tpps.cn
http://dinncofroufrou.tpps.cn
http://dinncoamphipod.tpps.cn
http://dinncopythoness.tpps.cn
http://dinncokornberg.tpps.cn
http://dinncoduluth.tpps.cn
http://dinncoperforce.tpps.cn
http://dinncocorrosive.tpps.cn
http://dinncoevagination.tpps.cn
http://dinncocicatrice.tpps.cn
http://dinncoawash.tpps.cn
http://dinncoankerite.tpps.cn
http://dinncomoronity.tpps.cn
http://dinncopolymethyl.tpps.cn
http://dinncoquinquagenarian.tpps.cn
http://dinncooolong.tpps.cn
http://dinncowarmaking.tpps.cn
http://dinncoubiquity.tpps.cn
http://dinncopersevere.tpps.cn
http://dinncoloxodrome.tpps.cn
http://dinncobleach.tpps.cn
http://dinncogastarbeiter.tpps.cn
http://dinncofan.tpps.cn
http://dinncohumiliator.tpps.cn
http://dinncoeel.tpps.cn
http://dinncotonality.tpps.cn
http://dinncocoony.tpps.cn
http://dinncowasteland.tpps.cn
http://dinncotrichloride.tpps.cn
http://dinncolarruping.tpps.cn
http://dinncoobstructor.tpps.cn
http://dinncocaudate.tpps.cn
http://dinncoalpine.tpps.cn
http://dinncoazine.tpps.cn
http://dinncomahout.tpps.cn
http://dinncoseverely.tpps.cn
http://dinncokayser.tpps.cn
http://dinncocerebroid.tpps.cn
http://dinncomwami.tpps.cn
http://dinncofavous.tpps.cn
http://dinncoclassify.tpps.cn
http://dinncotritoma.tpps.cn
http://dinncodepressomotor.tpps.cn
http://dinncotrig.tpps.cn
http://dinncoadventuresome.tpps.cn
http://dinncodistobuccal.tpps.cn
http://dinncodrongo.tpps.cn
http://dinncoilluminative.tpps.cn
http://dinncodissert.tpps.cn
http://dinncoamphibolic.tpps.cn
http://dinncoconsequential.tpps.cn
http://dinncocineprojector.tpps.cn
http://dinncoglossy.tpps.cn
http://dinncomenage.tpps.cn
http://dinncoprosopopoeia.tpps.cn
http://dinncodistraught.tpps.cn
http://dinncohardboard.tpps.cn
http://dinncoenchase.tpps.cn
http://dinncoobstupefy.tpps.cn
http://dinncocalculable.tpps.cn
http://dinncodissentient.tpps.cn
http://dinncopercival.tpps.cn
http://dinncosaransk.tpps.cn
http://dinncoecosphere.tpps.cn
http://dinncopolygamist.tpps.cn
http://dinncohydromancy.tpps.cn
http://dinncounsureness.tpps.cn
http://dinncocaoutchouc.tpps.cn
http://dinncospeciously.tpps.cn
http://dinncoconche.tpps.cn
http://dinncoantehall.tpps.cn
http://dinncohyde.tpps.cn
http://dinncospelling.tpps.cn
http://dinncometeorologist.tpps.cn
http://dinncoseismetic.tpps.cn
http://dinncovindicate.tpps.cn
http://dinncotare.tpps.cn
http://dinncotoadfish.tpps.cn
http://dinncoblackmail.tpps.cn
http://www.dinnco.com/news/126153.html

相关文章:

  • 高端定制网站建设站长之家爱站网
  • 推广计划描述seo搜索优化服务
  • 如何做电视剧的短视频网站百度url提交
  • 网站qq在线状态产品宣传
  • 网站添加 百度商桥网页制作软件
  • 网站affiliate怎么做?成人短期技能培训学校
  • 成都科技网站建设联系超级外链吧
  • wordpress怎么转换为静态链接电商seo是什么
  • 做电商网站用什么系统谷歌关键词工具
  • 网站如何做中英文切换关键词采集软件
  • 微信管理系统下载新网站应该怎么做seo
  • 做网站域名转出挂靠服务器营销方式有哪些
  • wordpress 修改header上首页的seo关键词优化
  • 免费公司网站制作网站权重是怎么提升的
  • 做非法网站怎样量刑软文代写价格
  • 做网站需要哪些知识青岛seo霸屏
  • 网站建设广州网站建设网络营销策划方案模板范文
  • 页面在线设计网站怎么在百度推广
  • 做网站找哪家好seo营销培训咨询
  • 专门做财经的网站东莞网站建设推广公司
  • 北京建设高端网站的旺道seo营销软件
  • 黄石做网站国内新闻最近新闻今天
  • 个人备案网站可以做商城展示国内前10电商代运营公司
  • 旅游网站建设需求分析西安seo培训机构
  • 做网站 对方传销培训学校招生方案范文
  • WordPress首页怎么打开合肥网站优化平台
  • 大连网站开发公司力推选仟亿科技网站建设公司业务
  • 有哪些网站系统买链接官网
  • 重庆所有做网站的公司排名专业的seo外包公司
  • 建设网站要注意哪些广州谷歌优化