如何只将选定的文件包含到git存储库中并排除其余所有文件?

时间:2011-07-26 09:42:30

标签: git gitignore

有没有机会与.gitignore文件相反?我的意思是只包含指定的文件并排除所有其他文件?提前谢谢。

2 个答案:

答案 0 :(得分:13)

您可以尝试以下操作:

#ignore everything
*

#except .c source
!*.c

!否定gitignore中指定的模式)

答案 1 :(得分:-2)

如果您只想关注root中的一个文件夹,请尝试以下方法:

        }
    </script>

    <div class="">
        @foreach( var item in Model.productList )
        {
            String priceId = "M" + item.Id.ToString();
            String subTotId = "S" + item.Id.ToString();
            String QuanId = "Q" + item. Id. ToString();

            <div class="">
                <label >@item.Name</label>
                <input name="pname[]" id="@priceId" type="text" value="@item.Price" onblur="UpdateSubANdTotal(@priceId, @QuanId, @subTotId)" />
                <label id="@QuanId">@item.Quantity</label>
                <label class="subtotal"  id="@subTotId">@item.SubTotal</label>
            </div>
        }
    </div>

    <label id="ABTotal">@Model.Total</label>