创建项目后总要用到git idea操作嫌太low 命令行又总是拼不对,写个博客记录下蛤!
从git上下载
git clone “项目地址”
git上传
git init 建立git本地库
git add ./ 添加所有文件 (当新增的时候用它也可以)
git status 查看文件状态 (是否被添加)
git commit -m " 描述" 添加到本地库(描述就是你的这些文件做了啥 比如“修改了用户表” “实现了添加功能” 等等 写了多少个bug)
git push -u origin master 上传到远程库 也就是github.com(master 为默认分支 会有其他分支)
嘻嘻嘻!
push报错拉
$ git push -u origin master
fatal: ‘origin’ does not appear to be a git repository
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
大致意思为与github 远程断开连接
git remote add origin “你的项目地址” //意思就是重新添加下你的链接
之后会弹出让你输入用户名 密码 啥的 就可以啦