1

git コマンドのリストとそれらが導入されているバージョンを誰か教えてもらえますか?

git バージョン 1.7.11 にアップグレードします

同僚はバージョン 1.7.3 を使用しています

バージョン 1.7.3 以降に追加/改善された点を伝える必要があります。

注: Windows を使用しています。

4

3 に答える 3

1

使用する:

git help -a

これにより、すべての git コマンドのリストが表示されます。

導入された新しいコマンドと既存のコマンドに加えられた変更に関する情報を含む変更ログは、次の場所にあります。 http://github.com/git/git/tree/master/Documentation/RelNotes 必要なバージョンを選択するだけです。これらのリストには、リリースごとのすべての変更に関する完全な情報が含まれています。

于 2012-07-19T11:45:49.133 に答える
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.
...
...
...

お役に立てれば...

于 2012-07-19T11:47:50.253 に答える
0

各バージョンのリリース ノートには、そのバージョンで導入された変更点が記載されています。ここから、関心のある 2 つのバージョン間で追加されたコマンドを確認できます。

于 2012-07-19T11:49:16.403 に答える