Home > Blockchain >  VSCode shortcut for syncing changes
VSCode shortcut for syncing changes

Time:10-23

Is there a shortcut for VSCode to synchronise changes to my remote repository right after a commit? I am working on MacOS if it can help.

I simply want to replace a click on the blue button in the following picture by a keyboard shortcut: enter image description here

If not present by default, how can I add one?

CodePudding user response:

It looks like this command is called git.sync under the keyboard shortcuts (no keybinding is assigned by default). You should be able to assign it a binding of your liking.

git sync

  • Related