git学习
Created at 2017-07-20 Updated at 2017-08-14 Category 2017年8月
关于Git的学习
这里我转载一个廖雪峰老师的博客廖雪峰官方网站,这篇博客基本命令还有原理都解释的很清楚,内容不多也不少,非常适合初学者阅读学习。
关于Git的一些补充
- 怎么推送本地的分支到远程的新分支上面去?
添加:git push origin local_branch:remote_branch
这个操作,local_branch必须为你本地存在的分支,remote_branch为远程分支,如果remote_branch不存在则会自动创建分支。
删除:git push origin :remote_branch,local_branch留空的话则是删除远程remote_branch分支。
关于Git出现的错误
Q1: 当输入git pull时,出现以下错误。
ssh: Could not resolve hostname git.tucodec.com: Name or service not known
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
A: 这种连不上的情况,其实就是网络不好,或者时使用了VPN,然后VPN出现了问题,检查一下就可以了。