Skip to content

Latest commit

 

History

History
50 lines (40 loc) · 1.16 KB

README.md

File metadata and controls

50 lines (40 loc) · 1.16 KB

Git Workshop OSDG

This is a repository for the git workshop held by OSDG IIIT-H. The repository has hacktoberfest topic added, hence the pull requests will count towards the completion of the challenge.

Contributing

git clone https://github.com/<your_github_username>/git-workshop
  • Change directory into the cloned folder
cd git-workshop
  • Checkout to a new branch.
git checkout -b <new_branch_name>
```.
- Add a file `<your_name>.json` in the `introductions` folder in the following format.
```bash
{
	"name": "your name",
	"branch": "your branch",
	"city": "city where you are from",
	"interests": "your interests"
}

A sample file akshat_chhajer.json has been added for your reference.

  • Add the newly created file
git add .
  • Commit the added file
git commit -m "<your commit message>"
  • Push the code back to your repository
git push origin <new_branch_name>