Translation of "diff" in English
We couldn’t find this entry. Showing approximate results. Check your spelling or suggest adding this term to the dictionary.
diff 过程产生一个您可以与当前数据进行对比的数据变化量。
The diff process produces a delta that you can compare against current data.
这个命令会输出一个 diff,但它可能并不是我们想要的。
This command gives you a diff, but it may be misleading.
diff的美化增强版,文件差异对比工具。
Diff landscaping enhanced version, file difference comparison tool.
当您点击批注时将使用此版本 。 它也将用作 diff 操作的第一项 。
This revision is used when you click is also used as the first item of a Diff operation.
我们现在来看一看 - 我要在这片区域里加入一些 得 C. diff.的人群。
What we're looking at now - I'm going to add in the community of some people with C. diff.
而要查看将该特性分支与另一个分支合并的完整 diff,你可能需要使用一个有些奇怪的技巧来得到正确的结果。 你可能会想到这种方式:
To see a full diff of what would happen if you were to merge this topic branch with another branch, you may have to use a weird trick to get the correct results.
diff命令使我们能够查看树或文件在两个版本之间的变化,它最常见的用途是检查你的工作目录中的本地(未发布的)修改。
A diff command allows us to review changes between two revisions of a tree or file, where the most common mode is to check the local (unpublished) changes in your working copy.
任何数据的变化都会复制一份到历史表,我们可以随时比较两个版本数据的变化,我还为此开发了一个类似diff的工具,可以逐行比较,通过色彩变化现实数据的不同。
Any change will copy the data to the history table, we can always compare two versions of the data changes, I also do this to develop a similar diff tool that can compare progressive changes in the reality of data through different colors.
如果 master 分支是你的特性分支的直接祖先,其实是没有任何问题的;但是一旦两个分支的历史产生了分叉,上述比对产生的 diff 看上去就像是将特性分支中所有的新东西加入,并且将 master 分支所独有的东西删除。
If master is a direct ancestor of your topic branch, this isn't a problem; but if the two histories have diverged, the diff will look like you're adding all the new stuff in your topic branch and removing everything unique to the master branch.
利用补丁, 用户就可以在不提交的情况下, 把工作副本的修改分享给其他 人, 创建补丁的方式是把 svn diff 的输出重定向到 补丁文件里:
Because of this, you can share the changes you've made in your working copy with someone else without first committing those changes by creating a patch file from the redirected output of svn diff
在 svn diff 的语境中, 这些冠以正负号的行显示了修改 前的行和修改后的行分别是什么样子的.
In the context of svn diff, those minus-sign- and plus-sign-prefixed lines show how the lines looked before and after your modifications, respectively.
Subversion能够在工作目录中记录工作拷贝的检出版本,这样常用的diff操作(比较本地的工作树和检出的版本)就能更快的在本地进行。
Subversion working copies also retain a pristine version of the checked out revision in the working directory, so that the common diff operation (comparing the local tree against a checked-out changeset) is local and thus fast.
History和diff就是其中两个很好的工具,因为我们清楚数据模型,就能解释不同的两个状态之间究竟有什么变化,并围绕这些变化构建一些真正有用和通用性的应用界面元素。
The history and diff tools are great examples of this - because we know the data model we can tell exactly what changed between two different states, and build some really useful and generically applicable UI elements around surfacing those changes.