通过git创建本地库提交代码到git地址上的步骤(使用pycharm

 这一步就相当于进入文件夹,执行git init命令

 

git commit命令提交本地库

然后git add 命令添加远程的分支,接口

 

最后通过,git push 命令即可提交代码

 

 

1:git init

2:git add .

3: git commit -m "first commit"

4:git remote add origin git地址

5:git pull --rebase origin master (检测合并)

6:git push -u origin master

 

 

通过git创建本地库提交代码到git地址上的步骤(使用pycharm

 

 

相关文章:

  • 2021-07-05
  • 2021-08-29
  • 2021-07-10
  • 2021-09-21
  • 2021-07-05
  • 2021-08-11
  • 2021-11-03
猜你喜欢
  • 2021-08-04
  • 2022-12-23
  • 2022-12-23
  • 2021-07-29
  • 2021-09-09
  • 2021-07-27
  • 2022-12-23
相关资源
相似解决方案