This repository is used to practice working collaboratively
Clone the repository
git clone https://github.com/Projects-for-coding-women/git-tutorial-helloworld.git
Let us know how you say Hello World in your language
- Create a file inside
helloworld/
calledmy-name.txt
- Inside the file, write how you would say hello in your language! You can also get creative and write anything you want.
- Push to the develop branch
git add helloworld/my-name.txt
git commit -m "added Hello in my language"
git push
- Modify the file inside
food/favourite_food.csv
by adding your name and favourite food - Create a new branch with your name and push your changes
git checkout -b xxx-favourite-food
git add food/favourite_food.csv
git commit -m "added my favourite food"
git push -u origin xxx-favourite-food
-
Go to github and open a Pull Request with your changes
-
Ask for someone to approve and
- Go to Open Issues, pick one and assign yourself to it
- Create a branch and work on it.
- When you've addressed the issue, open a Pull request and ask someone to approve it