以PyCharm为例,将自己的代码放在码云/GitHub上
程序员文章站
2022-07-12 18:21:36
...
步骤↓
- 安装git,此处不多说。
- 在码云或GitHub上创建项目,本文以码云为例:
- 进入刚刚创建好的项目的目录,获取项目URL:
- 进入项目根路径,执行以下代码创建git库:
#1、Git 全局设置: git config --global user.name "杜神" git config --global user.email "981040863@qq.com" #2、初始化 git 仓库: git init touch README.md git add * git commit -m "first commit" git remote add origin https://gitee.com/dushen666/spider.git git pull origin master --allow-unrelated-histories git push -u origin master
- 打开码云,可以看到代码已经同步了上去。
- 使用pycharm打开项目,可以看到git可以正常使用了:
上一篇: Struts 2.0拦截器