根据平时使用git的流程来编写。
git init 建立当前目录git仓库
git add . 将当前目录所有文件加入git暂存区,让git进行管理
git status 查看当前暂存区内容
git commit -m 'commit 描述' 将当前暂存区中的内容进行提交,保存为一个commit。
git log 查看提交历史记录
git remote add [name] [remote-address] 添加远程仓库地址。
git push -u [source-local-branch] "[remote-name]" 提交本地分支到远程仓库,并在远程仓库中创建该分支。