- Over 100,000 developers and designers are more productive with Tower - the most powerful Git client for Mac and Windows.
- GitHub Desktop Focus on what matters instead of fighting with Git. Whether you're new to Git or a seasoned user, GitHub Desktop simplifies your development workflow. Download for macOS Download for Windows (64bit) Download for macOS or Windows (msi) Download for Windows. By downloading, you agree to the Open Source Applications Terms.
- Feb 15, 2018 Git is a distributed version control system that allows teams to work on the same documents simultaneously. This means there is a single server that contains all the files, but whenever a repository is checked out from this central source, the entire repository is cloned locally to your machine.
Did you (finally) migrate from Windows to Mac and the only thing you miss is the lovely Git Bash?You have no idea what the Git Bash is (or Windows for that matters) and yet you really want to improve your Git experience on Mac?
Here it comes the Git Bash for Mac: a nice Terminal
customisation that always shows you the branch you are on, powered by a tab-based autocompletion for all of Git’s subcommands, command-line parameters, and remotes and ref names.
May 06, 2018 However, because Visual Studio for Mac has Version control system integration, you can use Subversion and Git without leaving the IDE. Subversion is a centralized version control system, which means that there is a single server that contains all files and revisions from which users can check out any version of any file.
Install
Follow these steps:
- from the
Terminal
, run
- open
Terminal
->Preferences
->Profiles
and select thePro
theme; - restart the
Terminal
and enjoy!
Uninstall
Follow these steps:
- from the
Terminal
, run
- open
Terminal
->Preferences
->Profiles
and select the theme you used to have; - restart the
Terminal
and (un)enjoy!
Customize

You don't like the colors of your new prompt? Open ~/.git-bash-for-mac.sh
and start messing up with it!
In addition, by simply exporting a couple of variables in ~/.git-bash-for-mac.sh
you can make you prompt even more informative:
Git For Mac High Sierra
- if you set
export GIT_PS1_SHOWDIRTYSTATE=1
, unstaged (*) and staged (+) changes will be shown next to the branch name; - if you set
export GIT_PS1_SHOWSTASHSTATE=1
and something is stashed then a '$' will be shown next to the branch name; - if you set
export GIT_PS1_SHOWUNTRACKEDFILES=1
and there are untracked files then a '%' will be shown next to the branch name.

Git For Windows 10
More info and options can be found here.