GitHub 操作:
- 创建一个新仓库
个人开发
版本库:
创建版本库。
# git init
将暂存区的内容提交到版本库。
# git commit -m "版本注释"
暂存区:
查看暂存区中的内容。
# git status
将工作区的内容提交到暂存区。
# git add .
对接本地仓库和远程仓库(GitHub):
建立本地仓库和远程仓库的连接。
# git remote add 仓库别名 https://github.com/用户名/仓库名
推送版本库内容到远程仓库,需输入 GitHub 的账号密码。-u 表示本地,master 指分支。当再次上传更新版本时,可省略其中的 -u 。
# git push -u 仓库别名 master
# git push 仓库别名 master
版本更新操作:
上传至暂存区,再上传到版本库,再上传到远程仓库。
# git add .
# git commit -m "版本注释"
# git push 仓库别名 master