Pull without using Git Bash

1

I'm having problems trying to get pull directly from Git Bash , I was wondering if you have another way to do it by another path, such as Git GUI for example.

    
asked by anonymous 07.10.2015 / 13:20

1 answer

2
The Git GUI does not have the command pull , however a git pull is nothing more than a git fetch followed by a git merge .

You need to go to Remote Menu > Receiving from > remote repo to make fecth and then go to the Merge Menu > Merge locally to make merge .

Here has a question in SOen talking about it.

If you're using GitHub or Bitbucket , you can use their desktop client ( GitHub Desktop and Atlassian SourceTree ) and make pull there.

    
07.10.2015 / 13:26