31
31
# 资料下载
32
32
[ 戳我(●'◡'●)] ( https://ustc-resource.github.io/USTC-Course )
33
33
34
- <!--
35
- ## FTP
36
- 1. FTP/FTPS:
37
- - 地址:ftp.ustclug.org;
38
- - 路径:/ebook/USTC-CS-Courses-Resource;
39
- - 用户名:ftp;
40
- - 密码:ftp;
41
- 2. SFTP (Secure File Transfer Protocol):
42
- - 地址:ftp.ustclug.org;
43
- - 路径:/ebook/USTC-CS-Courses-Resource;
44
- - 用户名:ftp;
45
- - 密码:ftp;
46
- 3. AFP (Apple Filing Protocol)
47
- - 地址:afp://ftp.ustclug.org/;
48
- - 路径:/ebook/USTC-CS-Courses-Resource;
49
- - Connect As Guest
50
-
51
- 感谢 @USTC-LUG, @[zzh1996](https://github.com/zzh1996), @[volltin](https://github.com/volltin)
52
-
53
-
54
- ## HTTPS
55
-
56
- - [github 网页](#课程目录)
57
- - [DownGit](http://downgit.zhoudaxiaa.com/#/home)
58
- - [gitzip-chrome-extension](https://chrome.google.com/webstore/detail/gitzip-for-github/ffabmkklhbepgcgfonabamgnfafbdlkn)
59
-
60
- 注意,建议不要直接用 GitHub 仓库的 `Download Zip`。因为网速慢,而且仓库很大,很可能下载到中途就切断连接了。
61
- 推荐用 DownGit 工具,方法很简单,在 GitHub 这里浏览网页到某个文件夹,然后将这个网页地址粘贴到 DownGit 下载即可。
62
-
63
- -->
64
-
65
34
# 课程结构
66
35
每门课程大致结构如下,有些栏目可能没有,也可以自己添加认为合理的栏目
67
36
```
@@ -104,16 +73,18 @@ course
104
73
* [ 微机原理与系统] ( ./微机原理与系统 )
105
74
106
75
# 贡献投稿
107
- [ 这里是 ] ( https://github.com/USTC-Resource/USTC-Course/graphs/contributors ) GitHub commit 贡献名单
108
- 内容创作者包括:
76
+ ## [ GitHub Commit ] ( https://github.com/USTC-Resource/USTC-Course/graphs/contributors )
77
+ [](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/links/0)[](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/links/1)[](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/links/2)[](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/links/3)[](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/links/4)[](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/links/5)[](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/links/6)[](https://sourcerer.io/fame/mbinary/USTC-Resource/USTC-Course/links/7)
109
78
79
+ ## 内容创作者
110
80
- mbinary
111
81
- Lyncien
112
82
- kingzevin
113
83
- ksqsf
114
84
- cclauss
115
85
- 吴颖文
116
86
- 童世炜
87
+ - 熊家靖
117
88
118
89
如果遗漏了你的名字,可自行 PR 或者联系贡献者。
119
90
@@ -122,31 +93,3 @@ course
122
93
* github 上不能直接上传大于 100mb 的文件。对于超过 100 mb 的文件,可以存在网盘,然后在 README 文件中贴上链接
123
94
* 文件内容的改动会使 git 重新上传, 在没有必要的情况下, 不要对二进制文件做任何更改.
124
95
125
- <!--
126
- 可以通过如下方式贡献
127
- - 帮忙上传: 可以发给仓库维护者帮忙上传,或者提 issue
128
- - 用网页操作或者[桌面版](https://desktop.github.com/) fork and pull request. 操作方式可以参考 [这里](https://blog.csdn.net/qq_29277155/article/details/51048990) 和[这里](https://blog.csdn.net/zhangw0_0/article/details/50667891),[PR](https://blog.csdn.net/huutu/article/details/51018317)
129
-
130
- - 用命令行: 注意仓库较大,直接 clone 很慢. 可以使用 sparse-checkout, 只下载指定的目录
131
- 执行
132
- ```shell
133
- mkdir ustc-courses #文件夹名可以自己取
134
- cd ustc-courses
135
- git init
136
- git remote add -f origin [email protected] :mbinary/USTC-CS-Courses-Resource.git
137
- git config core.sparsecheckout true
138
- echo "计算机与信息类/软件工程" >> .git/info/sparse-checkout #这里工作目录就是在那个 repo 主页下
139
-
140
- #如果还有其他目录,都像上面一样加入即可,如 `echo "计算机与信息类/图论/slides" >> .git/info/sparse-checkout`
141
- #只需记住的是 加入的目录应该在远程仓库存在,否则报错“error: Sparse checkout leaves no entry on the working directory”
142
-
143
- git pull origin master
144
- git remote add upstream [email protected] :mbinary/USTC-CS-Courses-Resource.git
145
- ```
146
- 更新内容后
147
- ```shell
148
- git fetch upstream/master
149
- git merge upstream/master
150
- ```
151
- -->
152
-
0 commit comments