Open Source Comes to Campus/Curriculum/Laptop setup/Windows git: Difference between revisions

From OpenHatch wiki
Content added Content deleted
No edit summary
(Use git-scm.com which auto-calculates the best Windows version I guess but is an annoying drive-by download but oh well OK)
 
(6 intermediate revisions by 4 users not shown)
Line 1: Line 1:
== Just one step ==
== Just one step ==


To install git on Windows, download and install this .exe.
To install git on Windows, download and install via .exe.


'''Note''': It will ask you a bunch of questions. It is a good idea to accept the defaults.
'''Note''': It will ask you a bunch of questions. It is a good idea to accept the defaults.


* https://msysgit.googlecode.com/files/Git-1.8.1.2-preview20130201.exe
* https://git-scm.com/download/win
[[File:git1.png]]

[[File:git2.png]]

[[File:git3.png]]

[[File:git4.png]]

[[File:git5.png]]

[[File:git6.png]]

[[File:git7.png]]

[[File:git8.png]]

[[File:git9.png]]


Once that is installed, launch '''Git Bash''' by doing:
Once that is installed, launch '''Git Bash''' by doing:


* Start -> All Programs -> Git -> Git Bash
* Start -> All Programs -> Git -> Git Bash

[[File:git10.png]]


== Set your user name and email ==
== Set your user name and email ==


You'll also want to tell git your name and email address. To do this, type:
You'll also want to tell git your name and email address. To do this, type the following into '''Git Bash''':


git config --global user.name "your-user-name"
git config --global user.name "Your Name"
git config --global user.email "your email"
git config --global user.email "your email"

[[File:git11.png]]


You can test that they've successfully been set by typing:
You can test that they've successfully been set by typing:


git config --global user.name "your-user-name"
git config --global user.name
git config --global user.email
git config --global user.email

For each line above, it should print the settings that you chose.

[[File:git12.png]]

== Sign up for a Github account ==

You can do so at [https://github.com/users this link].


== Return to laptop setup ==
== Return to laptop setup ==

Latest revision as of 05:25, 2 December 2018

Just one step

To install git on Windows, download and install via .exe.

Note: It will ask you a bunch of questions. It is a good idea to accept the defaults.

Once that is installed, launch Git Bash by doing:

  • Start -> All Programs -> Git -> Git Bash

Set your user name and email

You'll also want to tell git your name and email address. To do this, type the following into Git Bash:

   git config --global user.name "Your Name"
   git config --global user.email "your email"

You can test that they've successfully been set by typing:

   git config --global user.name
   git config --global user.email

For each line above, it should print the settings that you chose.

Sign up for a Github account

You can do so at this link.

Return to laptop setup

« Return to laptop setup