创建git仓库
以github为例,登录账号建立一个仓库,然后将仓库地址copy下来。
本地目录
- 初始化
$ git init
- 添加至版本库
$ git add -A
- 提交
$ git commit -m "first commit"
- 关联至远程仓库
$ git remote add origin https://github.com/user/project.git
- 合并
$ git pull --rebase origin master
- 推送
$ git push -u origin master