Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Git_&_Github _Crash_Course.md #7

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions Git & Github Crash Course.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
1. Download the Git on your system.


2. Configuring Git

After installing Git, you can also configure it - most importantly, you can set a username and email address that will be connected to all your code snapshots.

- This can be done via:

```
git config --global user.name "your-username"

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

You can learn more about Git's configuration options here: https://git-scm.com/docs/git-config