https://github.com/nexussjcet/git-workshop
Learn basics of Git and Github by doing.
https://github.com/nexussjcet/git-workshop
Last synced: 7 months ago
JSON representation
Learn basics of Git and Github by doing.
- Host: GitHub
- URL: https://github.com/nexussjcet/git-workshop
- Owner: nexussjcet
- License: gpl-3.0
- Created: 2021-05-23T06:31:02.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-05-31T16:13:38.000Z (over 4 years ago)
- Last Synced: 2025-01-14T14:11:16.122Z (9 months ago)
- Language: HTML
- Homepage: https://nexussjcet.github.io/git-workshop/
- Size: 133 KB
- Stars: 2
- Watchers: 0
- Forks: 24
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Introduction to Git and Github
A simple website created to teach students the basics of version control in software development using git and Github for a workshop conducted by Nexus, SJCET.Speaker: [Athul Cyriac Ajay](http://athulcyriac.xyz/)
## Pre-requisites
- Install Git on your computer. Instructions for installing Git on:
- [GNU/Linux and MacOS](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git)
- [Windows](https://phoenixnap.com/kb/how-to-install-git-windows)
## Instructions
- Fork this repo and clone it to your local machine (`git clone `).
- Create file with your name seperated by `-` or `_` in the content folder.
- Add the template given below and fill in the respective details.
```
---
name: "Your Name"
avatar: "img.com/img.png"
desc: "About You"
college: "College Name"
web: "website"
github: "github link"
gitlab: "gitlab link"
---
```
The `name`, `avatar`, `desc`, `college` and `github` fields are mandatory.
If you do not have a website or Gitlab account set those fields to `none` like so:
```
web: "none"
```
- Commit your changes with a proper commit message and push your changes to fork.
- Open a pull request against the main branch of this repo from your fork.
- Wait for someone to review the changes. After review, the maintainer will either
merge your changes or suggest changes if required.
## References
- [Git Cheatsheet](https://training.github.com/downloads/github-git-cheat-sheet/)
- [Git Documentation](https://git-scm.com/docs/)