-
Fork a copy of this project to your own repository in the upper-right corner of this page!
-
Now create a
git clone
in your local storage, the step by step guide is available here- Create a new branch
git checkout -b <branch-name>
- Set
upstream
branch so you can keep your local files synched with the original repository; Details
- Create a new branch
-
Now open the files in your own text editor of choice.
-
Write your name anywhere in the file so it shows up in the webpage!
-
Now git push the changes made to your own repository
git push origin <branch-name>
-
Submit a pull request in this repository; Details
-
THAT'S IT, you're done, we will review the Pull Request and if it fits the theme, we will merge.
-
For the best team like experience, stay in sync with our repository and contribute more by resolving our issues or submit your own!
-
Thank you for contributing!
A few guidance rules to follow:
- you mustn't delete/replace the names already in the file
- you can contribute more than once
- you can also style the whole document, remove or place new styles to your own desires BUT the names already approved must stay in the document and must show up on the webpage(no matter how big or small, hint hint)
- you can put your name anywhere in the body tag of the html file or even create a new page linked to the first one and put it there
- Me and darrenFj will use our discretion with merge conflicts and will notify all parties of the decision (this sounds so formal)
- your best weapon here is your creativity
- all pull requests will be approved as long as they meet the first criteria
Thank you JacksonBates for the well written contributions documentation
Please note that we have a code of conduct, please follow it in all your interactions with the project.
If you don't know where to start, check the "Guides" file for more information.
If there is a particular issue you want to fix, communicate your intention via the comments on the specific issue. This will ensure that you are not working on something someone else is close to finishing, and also gives you the opportunity to discuss your approach and get any help or advice you may need before starting.
If the bug or feature you wish to work on is not yet in the existing issues, add it to the issues thread first and comment regarding your intention to work on it straight away.
Aside from that, stick to the fork-pull workflow outlined below.
-
Fork this repo before making any changes - you will be initially pushing commits to your fork, not this repo.
-
Create issues on this repo, not your fork, if you encounter bugs, non-ideal behaviour/css, or wish to request features.
Below, you will find the summary of git guides from the Guides file.
(pull request)
-
On your forked verision of the repo on GitHub, click the green 'clone or download' button and copy the link.
- The link will look something like this:
https://github.com/RomchyFCC/GitHub-Practice-For-All.git
(but with your username, not mine)
- The link will look something like this:
-
In the terminal write the following command to clone the repo. This will give you a local copy to work on:
git clone <paste-the-link-of-your-repo.git-here>
- eg:
git clone https://github.com/RomchyFCC/GitHub-Practice-For-All.git
-
In your terminal navigate to the folder that was just created.
- The command for this is
cd
- eg:
cd GitHub-Practice-For-All
- The command for this is
-
If your version of the repo is ever out of sync with the original repo, i.e. there are new commits on the master branch of the original that you don't have, you need to sync your repo before adding your contributions. See below, in the section called 'How to sync your local repo with the original repo' for details or click here
-
Create a new branch to work on (you'll do this for your real contributions, too).
- At the terminal, in the correct folder, run
git checkout -b <new-branch-name>
<new-branch-name>
should be replaced with something sensible, likefeature-login-form
orfix-login-bug
- All together, an example:
git checkout -b feature-login-form
- At the terminal, in the correct folder, run
-
Make the changes to the appropriate files.
-
Push your change to your fork:
git add .
(the.
adds all modified and created items up for commit)git commit -m "<comment-about-your-commit>"
(the-m
signifies that you will pass a commit comment as an argument in quotes)git push origin <your-branch-name>
-
Open a pull request. Follow the guide here: Creating a pull request from a fork
- @mention anyone you specifically want to review your PR
-
From there, a reviewer will go through the rest of the process with you.
- You may be required to make changes to your code before it gets pulled in to the master branch - have patience and know that the difficult bits are done.
-
Now you can delete your local and remote branches:
- switch to
master
branch:
git checkout master
- list all branches:
git branch
you should see* master
and the second branch you created previously - now delete that second branch:
git branch -D <name-of-the-branch>
- delete second branch from your GitHub:
git push origin --delete <name-of-the-branch>
- switch to
-
This setup should be done only once for the repo.
source- List the current configured remote repository for your fork:
git remote -v
You should see two links withorigin
in front of them.
The links will begin either withhttps
orgit@
- Specify a new remote upstream repository that will be synced with the fork:
git remote add upstream https://github.com/RomchyFCC/GitHub-Practice-For-All.git
or
git remote add upstream git@github.com:RomchyFCC/GitHub-Practice-For-All.git
depending on which protocol you saw in the first step. - Verify the new upstream repository you've specified for your fork:
git remote -v
now you should see four links: twoorigin
and twoupstream
- List the current configured remote repository for your fork:
-
This should be done to check for updates on the remote repo:
source- Get data from original repo:
git fetch upstream
- Switch to the
master
branch of your local repo:
git checkout master
- Merge changes from the original repo into your local
master
branch:
git merge upstream/master
- Now push changes to your GitHub repo:
git push
- Get data from original repo:
Now your local repo and your GitHub repo is up to date with the original repo you forked from. For more in-depth look at github and markdown, here are some courses/guides/cheatsheets: Link
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
Examples of behavior that contributes to creating a positive environment include:
- Using welcoming and inclusive language
- Being respectful of differing viewpoints and experiences
- Gracefully accepting constructive criticism
- Focusing on what is best for the community
- Showing empathy towards other community members
Examples of unacceptable behavior by participants include:
- The use of sexualized language or imagery and unwelcome sexual attention or advances
- Trolling, insulting/derogatory comments, and personal or political attacks
- Public or private harassment
- Publishing others' private information, such as a physical or electronic address, without explicit permission
- Other conduct which could reasonably be considered inappropriate in a professional setting
Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team (@RomchyFCC & @DarrenfJ). All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
This Code of Conduct is adapted from the Contributor Covenant, version 1.4, available at http://contributor-covenant.org/version/1/4
Could this CONTRIBUTING file be improved? Was anything inaccurate or unclear? Please open up an issue and suggest appropriate fixes. Good documentation is just as crucial as good code - so documentation contributions are just as valued as fancy code contributions!
- Darren
- Ariel Leslie
- Ivan Oung
- Tom
- Aaron Schmidt
- Alex Nielsen
- Sachithra Lahiru Kahatapitiya
- dmac0505
- Alan Moir
- stacyHere
- akashksunny13
- Firuz Shoev
- Bratislav
- Catherine Fromont
- Tian
- Elyse Wyatt
- rkimmi
- Sheena Mattu
- Pinja Pessi
- h1tag
- Danielle Shwed
- dinamahmoud25
- sunil
- Nirmal Dalmia
- mukul7
- Ivan Yakimov
- Ayush
- Bing
- Dimitra Karamperi
- Daria Puch
- Ravi Kishore Thella
- Rob Williams
- richardson3535
- Jacek Złoty
- Rose
- vignesh
- Kevin T Reynolds
- William Larry
- Akshay Kumar