代码之家  ›  专栏  ›  技术社区  ›  HelloCW

在androidstudio3.3中,弹出菜单和git菜单上的Revert命令有什么不同?

  •  -1
  • HelloCW  · 技术社区  · 5 年前

    我在androidstudio3.3的项目中使用Github。

    我发现Revert命令显示在三个位置,请参见图1、图2、图3-1和图3-2(图3-2是图3-1的详细窗口,Revert命令位于图3-2的左中间)。

    图1 enter image description here

    图2 enter image description here

    图3-1 enter image description here

    图3-2 enter image description here

    0 回复  |  直到 5 年前
        1
  •  2
  •   Geno Chen    5 年前

    图1, Version Control Log -&燃气轮机; Revert ,编辑使其看起来像提交之前的时间的存储库,并可以选择进行提交。
    VCS -&燃气轮机; Git -&燃气轮机; Revert...
    图3, Local History Show History ,作用类似于1,但在特定于JetBrains的工具中,与Git无关。


    细节:

    1. 版本控制 日志 -&燃气轮机; 还原 A revert, then add and commit

      • (The) reset at:29只是想恢复Git存储库进行测试。)
      • 首先,它做一个 git revert
      • 然后,弹出一个提交窗口,要求您提交。
      • 第二,在决定提交哪个文件之后,做一个 git add git commit
      • 结论: 版本控制 -&燃气轮机; 还原 git还原 git添加 + ,可选)=在提交之前编辑存储库。
    2. -&燃气轮机; -&燃气轮机; 仅在存储库不干净时激活。 A rm, then checkout

      • 首先,它做一个 git rm --cached -f
      • git checkout HEAD
      • 风投 吉特 -&燃气轮机; = git rm + git checkout =删除任何未提交的更改。
    3. 地方史 显示历史记录 is a standalone built-in VCS managed by IntelliJ IDEA File -&燃气轮机; Invalidate Caches / Restart -&燃气轮机; Invalidate . 那个 还原 表现得像 -&燃气轮机; ,都将源还原到历史。

        2
  •  1
  •   VonC    5 年前

    VCS -> Git -> Revert...
    git reset HEAD ,至 unstage changes added to the index

    中显示的还原 Log 会真的吗 git revert