You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
原文
The next time one of your collaborators fetches from the server,
they will get a reference to where the server's version of serverfix
is under the remote branch origin/serverfix:
指摘箇所1
原文
The next time one of your collaborators fetches from the server,
they will get a reference to where the server's version of
serverfix
is under the remote branch
origin/serverfix
:現行訳
次に誰かがサーバーからフェッチしたときには、
その人が取得するサーバー上の
serverfix
はリモートブランチ
origin/serverfix
となります。指摘
試訳
次に誰かがサーバーからフェッチを実行すると、
サーバー上の
serverfix
がリモートブランチorigin/serverfix
の向こうにある、という状態を指し示すポインタが取得されます。
指摘箇所2
原文
If you're on a tracking branch and type
git pull
,Git automatically knows which server to fetch from and branch to merge into.
現行訳
追跡ブランチ上で
git pull
を実行すると、Git は自動的に取得元のサーバーとブランチを判断します。指摘
試訳
追跡ブランチ上で
git pull
を実行すると、Git は自動的に、フェッチするサーバーおよびマージするブランチを判断します。
指摘箇所3
原文
However, you can set up other tracking branches if you wish –
ones that track branches on other remotes, or don't track the
master
branch.現行訳
しかし、必要に応じてそれ以外の追跡ブランチを作成し、
origin
以外にあるブランチやmaster
以外のブランチを追跡させることも可能です。指摘
試訳
ただし必要なら、別の追跡ブランチを設定することができます。
別のリモートにあるブランチを追跡する、
つまり
master
ブランチを追跡しないということが可能です。補足説明
master
以外のブランチ」という訳は don't track themaster
を裏返して訳していて、これを良い訳し方と思います。ただしカンマ or の関係性の中で考えると、「master
以外のブランチを追跡する」としても「master
ブランチを追跡しない」としても、実はあまり良い訳し方になっていないことを危惧します(厳密に考えると「別のリモートのブランチを」の言い換えになっていない)。いっそのこと、試訳のような「つまりmaster
ブランチを追跡しない」 とするのではなく、「少なくともmaster
ブランチを追跡しない」 とすると、不適切さが解消するようにも思います。(こういう策とするには、やはり原文どおりに否定形で訳さなければならないことになります。)The text was updated successfully, but these errors were encountered: