Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 792 Bytes

GitBash_Install.md

File metadata and controls

17 lines (10 loc) · 792 Bytes

Install Git on Windows

1.Download the latest Git for Windows installer.(https://git-for-windows.github.io/)

2.When you've successfully started the installer, you should see the #### Git Setup wizard screen. Follow the Next and Finish prompts to complete the installation. The default options are pretty sensible for most users.

  1. Open a Command Prompt (or Git Bash if during installation you elected not to use Git from the Windows Command Prompt).

  2. Run the following commands to configure your Git username and email using the following commands, replacing Emma's name with your own. These details will be associated with any commits that you create:

$ git config --global user.name "Emma Paris"
$ git config --global user.email "eparis@atlassian.com"
  1. You are done .