当分支名称和包含文件名相同时,如何在git中克隆单个分支?

时间:2017-10-26 07:24:57

标签: git

目前,我尝试将特定的单个分支克隆到目录中。

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    >

<android.support.v7.widget.RecyclerView
    android:id="@+id/accountTransactionList"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    />

<android.support.design.widget.FloatingActionButton
    android:id="@+id/fab"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="bottom|end"
    android:layout_margin="16dp"
    android:src="@drawable/ic_add_white_24dp"
    app:layout_anchor="@id/accountTransactionList"
    app:layout_anchorGravity="bottom|right|end"
    />

</android.support.design.widget.CoordinatorLayout>

到目前为止,它有效,但我得到以下信息:

  

致命:含糊不清的论点&#39;测试&#39;:版本和文件名使用&#39; - &#39;   将路径与修订分开,如下所示:&#39; git   [...] - [...]&#39;

到目前为止,看起来git将正确的分支克隆到目录中,但如果没有该消息,我会感觉更好。这里的问题是,git root包含一个文件&#34; test&#34;这与分支的名称相同。是否有任何选项明确指出给定名称是分支机构?

编辑:抱歉,在我使用的脚本中发现问题并在错误的位置找到问题

0 个答案:

没有答案