Spyder IDE中使用git

周迪新發表於2020-10-13

直接在ipython console 中輸入命令即可

!git init
!git remote add origin https://github.com/myUserName/sample.git
!git add temp.py
!git commit -m "My commit"
!git push -u origin master

相關文章