Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I connect my python spyder with github?

Is there any way to connect python spyder with github?

I manage my R scripts via github, because R provides with interfaces that enables users to commit, pull and push, but I wonder if there is same(or similar) system in python(x,y) spyder.

I want to manage my python scripts with github, not just locally editing my codes and manually write change logs on my hand every time...

like image 654
ritos Avatar asked Feb 15 '17 02:02

ritos


People also ask

Can you connect Spyder to GitHub?

Spyder has basic integration with the Git distributed version control system. You can commit or browse (in the gitk GUI) a file, directory or the entire repository via the commands in the context menu for the relevant object (right-click).

Does Spyder work with Git?

Spyder has limited integration with Git and Mercurial. Commit and browse commands are available by right-clicking on relevant files that reside within an already initialized repository. This menu assume that certain commands are available on the system path.


1 Answers

A command line git has been integrated into Spyder.

https://github.com/spyder-ide/spyder/issues/6105

First right click the tab corresponding to any file in your repository and click "set console working directory."

Then go to the Ipython window in Spyder and simply type your git commands (assuming Git is installed and its paths are configured properly) but append a "!" to the beginning of your command:

!git add "file.py" !git commit -m "My commit" !git push origin master 
like image 187
betontalpfa Avatar answered Oct 04 '22 17:10

betontalpfa