面向开发者的技术速查清单(Cheat Sheets)集合,整理常见技术、工具与开发流程,帮助快速查阅关键信息,提高开发效率。
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/jaywcjlove/reference.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/jaywcjlove/reference.git git push -u origin main
PUSH AN EXISTING REPOSITORY
git remote add origin https://gitmorph.com/jaywcjlove/reference.git
git push -u origin main