Git 与 GitHub (pycharm 中建立关联)
Posted CSR-kkk
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git 与 GitHub (pycharm 中建立关联)相关的知识,希望对你有一定的参考价值。
1. 安装 git
2. 创建远程仓库
注册GitHub帐号 - -> create new repository
3. 提交到本地仓库
pycharm 项目右键 open in terminal - -> git init【使项目成为git项目】- -> commit
(忽略文件可以添加到ignore)
4. 本地仓库与远程仓库建立关联
git -> manage remotes 添加远程仓库地址(链接)
(第一次需要登录github帐号)
或者使用 token 来提交代码
github.com - - > setting - -> Developer settings - - >
Personal access tokens - - > Generate new token - - >
- notes
- 添加权限(全部勾选)
- Generate token
- 复制token
pycharm - - > settings - - > Github - - > +
- - > Log in with Token - - >
粘贴 token - - > Add Account - - > 点击 ✔ 进行激活
* 关联过之后,以后 代码 push 不需要再次关联
5. 提交到远程仓库
git push
以上是关于Git 与 GitHub (pycharm 中建立关联)的主要内容,如果未能解决你的问题,请参考以下文章