Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/butlerx/introtogit
Helpdesk intro to git
https://github.com/butlerx/introtogit
Last synced: about 1 month ago
JSON representation
Helpdesk intro to git
- Host: GitHub
- URL: https://github.com/butlerx/introtogit
- Owner: butlerx
- License: mit
- Created: 2015-10-22T15:02:08.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-10-22T17:44:36.000Z (about 9 years ago)
- Last Synced: 2024-10-16T01:09:54.981Z (3 months ago)
- Language: Python
- Size: 125 KB
- Stars: 0
- Watchers: 3
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# IntroToGit
Helpdesk intro to git# Workshop Help
- First, fork the repo. See that button that says fork? Press that.
- Okay, so now you have your very own git repo! How can you get that repo
on your account? Well you've got to **`clone`** the repo.So: go to your new repo.
There should be a url that looks like this:https://github.com/$username/IntroToGit.git
On your terminal, run a `git clone` command, like so:```
git clone [url goes here]
```You'll be prompted for your password, but don't worry, it's HTTPS!
- Git will download the files and place them in a new directory, called
`IntroToGit`