Github基础操作专题提供Github基础操作的最新资讯内容,帮你更好的了解Github基础操作。
## 线上创建Github仓库 略 ## 首次初始化 初始化 git init 添加`README.md` git add README.md 添加提交描述 git commit -m "first commit" 连接远程仓库 git remote add origin https://github.com/nongshuqiner/-git-.git ## 提交操作 添加到本地仓库 git add . 添加提交描述 git commit -m '内容' 提交前先从远程仓库...