SIGN IN SIGN UP

计算机速成课(播放量 496.2 万) (共40集,每一集 10 分钟)2018 年完成翻译。视频评论区可以看到诸多好评

Quick setup

Get started by creating a new file or uploading an existing file. We recommend every repository include a README, LICENSE, and .gitignore.

https://gitmorph.com/1c7/Crash-Course-Computer-Science-Chinese.git

CREATE A NEW REPOSITORY ON THE COMMAND LINE

touch README.md
git init
git checkout -b main
git add README.md
git commit -m "first commit"
git remote add origin https://gitmorph.com/1c7/Crash-Course-Computer-Science-Chinese.git
git push -u origin main

PUSH AN EXISTING REPOSITORY

git remote add origin https://gitmorph.com/1c7/Crash-Course-Computer-Science-Chinese.git
git push -u origin main