MATLAB git pull

I am using MATLAB git support, and there seems to be no pull option. There is a "fetch" and a "merge".

Is there a direct way to pull from git to MATLAB?

Related .

0
source share
2 answers

The answer to your question, this can be achieved using the shell ! :

!git pull

+1
source

Personally, I would do as tuna_fish suggested; it's neat.

However, since you want to do this with integration, I will point out that as git pull documentation says, a git pull is just a git fetch , followed by git merge . Thus, you can use these two functions in series.

0
source

Source: https://habr.com/ru/post/1015030/


All Articles