user3619128
user3619128

Reputation: 285

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 push.

Upvotes: 4

Views: 1679

Answers (1)

VonC
VonC

Reputation: 1328162

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

You can then enter a command:

  • name "Pull with Rebase"
  • with the command git pull --rebase

Upvotes: 3

Related Questions