.Net Core 5学习笔记

7、下载微软提供的Net Core身份认证为例

2020-12-24  本文已影响0人  _千_鸟_

以官方github提供的Net Core身份认证为例

地址:https://github.com/dotnet/aspnetcore/tree/master/src/Security/samples

直接Download Zip仓库,数据量太大了,如何只下载需要的文件夹呢?

参考步骤:

第一步:找到需要下载的链接

例如,在仓库中进入想要下载的文件夹,复制浏览器中的地址,如下:

https://github.com/dotnet/aspnetcore/tree/master/src/Security/samples

将”/tree/master/”替换成”/trunk/”,则新生成的新链接为:

https://github.com/dotnet/aspnetcore/trunk/src/Security/samples

注意:这里根据分支的不同,通用的办法是将”/branches/branchname/”替换成”/trunk/”。例如:”/tree/master/” to “/trunk/” ; “/tree/develop/” to “trunck”

第二步:执行svn checkout

执行命令:svn checkout your code

这里的SVNURL就是step1中生成的url

指定文件夹的内容就下载下来了

相关链接:

1、SVN下载:https://tortoisesvn.net/downloads.html

上一篇下一篇

猜你喜欢

热点阅读