赞
踩
GNU通用公共许可证
。点击next
,进入下一步。Git
即可。Use Vim (the ubiquitous exet editor) as Git's default editor
即可。Let Git decide
决定即可。Git from the command line and also from 3rd-party software
即可。Use bundled OpenSSH
。Use the OpenSSL library
即可。Checkout Windwos-style, commit Unix-style line endings
即可。Use MinTTY(the default terminal of MSYS2)
即可。git pull
操作:选择默认的Fast-forward of merge
即可。Git Credential Manager
即可。Enable file system caching
即可。Finish
关闭弹窗。设置您的全局用户名和电子邮件地址。
git config --global user.name "Your Name"
git config --global user.email "you@example.com"
查看Git所有的设置:git config --list
。
File
下拉框中的Settings
入口进入。Version Control
中的Github
,点击Add account
中的Log in via Github
。Authorize in Github
。OK
即可。test01.py
文件,输入print("Hello World")
。Version control
中Share Project On
的Github
入口。Repository name
:新建的Github仓库名。使用默认的项目名test_git
。Private
勾选代表私有仓库,不勾选则为公开仓库。Remote
:远程仓库。使用默认的origin
。Description
:详细描述。test01.py
文件提交。 Commint Message
:描述这次提交详情。输入Initial commit
。点击Add
提交。
遇到443错误:提交代码时,遇到Failed to connect to github.com port 443:connection timed out
的解决方法。
Win + R
输入cmd
打开命令提示符,执行如下命令,来取消全局代理。git config --global --unset http.proxy
git config --global --unset https.proxy
master
下拉框中的Push
,同步代码到Github的test_git
仓库。test_git
代码。
Open in
中的Github
,可以查看Github中test01.py
文件。test01.py
文件中添加一行代码print("Hello World2")
。master
下拉框中的Commit
打开提交页面。test01.py
,填写提交信息Add print("Hello World2")
,再点击Commit
提交到本地仓库。Push
,将已经commit
过的本地仓库内容推送到远程仓库中。Open in
中的Github
,查看Github中test01.py
文件。test01.py
文件中将"Hello World2"改为"Hello World xxx"Change "Hello World2" to "Hello World xxx"
。Push项目后,遇到"fatal: unable to access: OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 0"错误的解决方法。
Win + R
输入cmd
打开命令提示符,执行如下命令,来清理Git缓存。
git config --global http.postBuffer 524288000
Open in
中的Github
,查看Github中test01.py
文件。1、GitToolBox:
Plugins
的Marketplace
中搜索GitToolBox
安装。具体步骤参考请第二章:“Pycharm共享项目到Github”,下文只会介绍Gitee与Github共享项目时的不同点。
Gitee
,安装Gitee
,点击OK
保存即可。Version Control
中的Gitee
,点击Add account
中的Log in with Tokens
。Server
:Gitee服务器地址,使用默认的gitee.com
。Access Token
:Gitee的权限凭证,使用我们私人令牌即可。Refresh Token
:备用token,Access Token
过期后,使用Refresh Token
的token。为了方便,再填写一次我们私人令牌。is private token
:是私密凭证。勾选即可。OK
保存即可。test01.py
文件Push到Gitee中。Open in
中的Github
,查看Github中test01.py
文件。本文到此结束,如有疑问或建议,请随时留言讨论。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。