使用Git提交方法步骤
使用git提交需要在https://github.com自己的账号上创建一个库 具体创建库的方法可以自行百度
在本地建你的项目
使用git base here 提交方法如下
选择你的项目然后右键选择 git base here
显示画面后输入
git init 命令 或者输入 git clone https://github.com/(具体库路径) 拉取新文件
用git remote add origin https://github.com/(具体库路径) 看是否连接上库
然后使用 git add . 命令 其中 . 是必须的
接着使用 git commit -m "提交日志说明"
最后使用
git push origin master 命令
如果报 falied to push some refs to "http (git路径名)" 是因为两者不同步 先进行pull 进行合并然后在push
使用命令合并
git pull --rebase origin master
拉取并合并代码
然后再执行
git push origin master 命令