本地与github对接
新建一个文件夹,然后本地目录里
git init建立一个本地的仓库
将东西pull下来,git pull 那个网址
git config –global user.name yourname,git config –global user.email youremail。然后再配置用户名和邮箱
git add . 将全部加入本地仓库
git commit -m “xxx”
git remote add origin 那个网址
git config credential.helper store
git push origin master
错误解决
如果遇到:error: failed to push some refs to的错误,
应该是与github上的不同步的问题造成的,可以先git pull origin master,再git push origin master,会累加合并不用担心
另:如果需要再往另一个仓库上传东西,需要先git reset –hard FETCH_HEAD清空本地工作区,否则会Pull is not possible because you have unmerged files.报错
然后先git remote rm origin清除上次的连接再git remote add添加新的连接
如果这一过程中误删了文件,可以通过git fsck –lost-found
找到可能的文件,再通过git show xxxxxxxxxxxxx查看其中的信息,git rebase xxxxxxxxxxxxxx来进行恢复 。
如果遇到 fatal: HttpRequestException encountered.
需要更新Windows的git凭证管理器
https://github.com/Microsoft/Git-Credential-Manager-for-Windows/releases/tag/v1.14.0
下下来执行即可
添加分支
git branch v1.0
然后
git push origin v1.0
删除本队分支是先git branch查看分支,再git branch -d xxx删除分支