2012-07-19 92 views

回答

1

用途:

git help -a 

这会给你所有的git命令的列表。

有关新命令的信息更新记录和对现有命令的更改可在以下网址找到:http://github.com/git/git/tree/master/Documentation/RelNotes 只需拿起您需要的版本即可。这些列表包含从发布到发布的所有更改的详尽信息。

0

到这个位置: git/Documentation/RelNotes

下载所有的发行说明1.7.3从到任何版本,你想去。

重要提示:这些将包含所有细节,而不仅仅是新命令,还包括错误修复和不兼容性(如果有的话)。 在您可以安全地决定是否可以进行升级之前,您将需要所有这些。

例如

Git v1.7.11 Release Notes 
========================= 

Updates since v1.7.10 
--------------------- 

UI, Workflows & Features 

* A new mode for push, "simple", which is a cross between "current" 
    and "upstream", has been introduced. "git push" without any refspec 
    will push the current branch out to the same name at the remote 
    repository only when it is set to track the branch with the same 
    name over there. The plan is to make this mode the new default 
    value when push.default is not configured. 

* A couple of commands learned the "--column" option to produce 
    columnar output. 

* A third-party tool "git subtree" is distributed in contrib/ 

* A remote helper that acts as a proxy and caches ssl session for the 
    https:// transport is added to the contrib/ area. 

* Error messages given when @{u} is used for a branch without its 
    upstream configured have been clarified. 
... 
... 
... 

希望这有助于...

+0

git subtree似乎没有在msysgit 1.8.0.mssgit.0中可用,是吗? – koppor 2013-01-09 18:20:40

0

release notes每一个版本都会给你在这个版本中引入的变化。你可以从这里找出你感兴趣的两个版本之间添加的命令。

相关问题