赞
踩
git是版本控制系统。github是一个给用户提供git服务网站。
下载地址:Git - Downloads
在File -> Settings -> Version Control -> Git -> Path to git executable 中选择你安装的Git GUI中bin目录下git.exe 路径,点击后边的Test按钮,显示Git版本表示安装成功。
File -> Settings -> Version Control -> GitHub->Log in with Token
在GitHub的Setting->Developer settings->Personal access tokens
新建tokens,复制粘贴即可登录。
1)VCS->Share Project on GitHub || VCS->Import into version control->Share Project on GitHub
2)(显示Git)Git->GitHub-> Share Project on GitHub ->Share Anyway,即可跳到1)中的界面。
选择上传内容
顺利的话即可上传成功,去GitHub即可查看到上传内容。
更新程序
VCS->Commit->填写描述->Commit and Push
更新成功
拉取远程
VCS->clone
常见错误
1)10054
解决方案:Cmd 输入ipconfig /flushdns,回车即可。
2)Can not finish GitHub sharing process
解决方案:
打开Git Bash,分别设置user.email 和user.name:
git config --global user.email "用户邮箱“
git config --global user.name "用户名”
3) OpenSSL SSL_connect: Connection was reset in connection to github.com:443
开代理时出现的问题
解决方案:
打开Git Bash,设置代理:
git config --global --add remote.origin.proxy ""
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。