Git
Wing's Git integration requires the git command line executable to be installed separately from Wing. Please see https://git-scm.com/ for information about Git. The git executable may either be in your path or set with the Version Control > Git > Git Executable preference.
The Git integration defines the following commands, in addition to those documented in Common Version Control Operations:
Blame/Praise shows the revision, author, and date for every line in a file.
List Branches lists all branches in the local repository.
Switch Branch switches to a different named branch with git checkout <branch>.
Fetch Repository Changes fetches changes from a remote repository with git fetch <remote>.
Pull Branch Changes pulls changes on a branch from a remote repository to the local repository with git pull <remote> <branch>.
Push Branch Changes pushes changes on a branch from the local repository to a remote repository using git push <remote> <branch>.