How can I use git pull --rebase in git GUI

I am using git GUI. How can I implement the git bash command git pull --rebase?

I am going to use this command before clicking.

+4
source share
1 answer

You can add a custom command in git gui: Tools -> Add

Then you can enter the command:

  • name "Pull with Rebase"
  • with the team git pull --rebase
+3
source

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


All Articles