Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/msabramo/git-started
Teach people about git
https://github.com/msabramo/git-started
git
Last synced: 18 days ago
JSON representation
Teach people about git
- Host: GitHub
- URL: https://github.com/msabramo/git-started
- Owner: msabramo
- Created: 2019-03-03T20:50:43.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-03-04T15:52:10.000Z (almost 6 years ago)
- Last Synced: 2024-12-03T21:58:13.161Z (about 1 month ago)
- Topics: git
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# git-started
A toy repo for demonstrating stuff about how to use git
## How to clone this
1. Make sure you have git installed. If on Windows, download and install [Git
for Windows](https://gitforwindows.org). Here's a nice
[video](https://youtu.be/albr1o7Z1nw) on the topic.2. Open a terminal or Git Bash shell and do:
```
git clone [email protected]:msabramo/git-started.git
```## How I created this
If you want to replicate what I did, here's what I did:
```
$ cd /some/place/where/I/keep/my/git/repos$ mkdir git-started
$ cd git-started
$ git init
Initialized empty Git repository in /Users/abramowi/dev/git-repos/git-started/.git/$ vim numbers.txt
# (type in some stuff)$ git add numbers.txt
$ git commit -m 'Add numbers.txt'
[master (root-commit) 01a8977] Add numbers.txt
1 file changed, 14 insertions(+)
create mode 100644 numbers.txt
```