Wing's Git support requires the git command line executable to be installed separately from Wing. Please see http://git-scm.com/ for information about Git. The git executable may either be in your path or set it with the Git executable preference in the Version Control / Git preferences group.
The Git support defines the following commands, in addition to those documented in Common Version Control Operations. Please see the Git documentation for information on what these commands do when executed by the command line executable.
List Branches
List all branches in local repository
Switch Branch
Switch to a different named branch. This runs git checkout <branch>
Fetch Repository Changes
Fetch changes from a remote repository. This runs git fetch <remote>
Pull Branch Changes
Pull changes on a branch from a remote repository to the local repository. This runs git pull <remote> <branch>
Push Branch Changes
Push changes on a branch from the local repository to a remote repository. This runs git push <remote> <branch>