与github同步笔记

与github同步笔记

### 个人学习整理,仅供参考

创建新的库

git init
git commit -m "first commit"
git branch -M master
git remote add origin 
git push -u origin master

同步笔记

git init
git add .
git commit -m "commit"
git status
git push -u origin main

你可能感兴趣的:(git,github)