与github同步笔记 ### 个人学习整理,仅供参考 创建新的库 git init git commit -m "first commit" git branch -M master git remote add origin <github库的地址> git push -u origin master 同步笔记 git init git add . git commit -m "commit" git status git push -u origin main