検索

ホームページ  >  に質問  >  本文

git Branch -rd リモート/ブランチは何を削除しますか?

git branch -rd remote_name/branch_name
削除後、成功を求めるプロンプトが表示されます。

git branch -r を使用してリモート ブランチ リストを取得します。 _name,
を使用し、

git pull を使用してブランチ Branch_name がリモート エンドから取得されたことを確認します。
では、

git branch -rd remote_name/branch_name は何を削除しましたか?

私の git バージョンは次のとおりです:


git versiongit version 2.7.0.windows.1

仅有的幸福仅有的幸福2811日前804

全員に返信(1)返信します

  • 给我你的怀抱

    给我你的怀抱2017-05-02 09:37:31

    git Branch -rremote-tracking Branch を操作します。このブランチはまだローカルですが、編集することはできません。
    たとえば、remote から fetch するとき、他の誰かが remote< code>somebranch にアクセスすると、次の情報が表示される場合があります: git branch -r 操作的是 remote-tracking branch 这个branch依然是你本地的,不过它不能被编辑。
    譬如当你从一个remotefetch时,如果在此之前其他人在remote上提交了一个新的分支somebranch,你可能会看到如下的信息:

    git fetch origin
    remote: Counting objects: 1, done.
    remote: Compressing objects: 100% (1/1), done.
    remote: Total 1 (delta 0), reused 1 (delta 0)
    Unpacking objects: 100% (1/1), done.
    [new branch]      somebranch    -> origin/somebranch
    

    此时你本地多了一个origin/somebranch这个就是一个remote-tracking branch, 然后你可以从中checkout一个出来做你的事情:

    git checkout -b sbranch origin/somebranch
    
    

    删除远程分支只能通过git push リーリー

    現時点では、ローカルに追加の origin/somebranch があり、そこから 1 つをチェックアウトして作業を行うことができます。 #🎜🎜# リーリー #🎜🎜#リモート ブランチは、git Push を介してのみ削除できます。 #🎜🎜#

    返事
    0
  • キャンセル返事