When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners / mentors of this repository before making a change.
Please note we have a code of conduct, please follow it in all your interactions with the project.
- Make sure you understand the project and codebase.
- Go through the existing issues before raising a new one.
- When you’re suggesting a new change or would like to take up an existing issue, kindly mention your solution idea.
- Ensure any install or build dependencies are removed before the end of the layer when doing a build.
- Update the README.md with details of changes to the interface, this includes new environment variables, exposed ports, useful file locations and container parameters.
- We strictly use GitFlow and try to have a linear merge. Please follow the guidelines below.
- Make sure your code has been prettified by Prettier & ES Lint before pushing. We use this VS Code Config.
- Navigate to the CatsInTech/Rezume repository and click on Fork button.
- You'll either find a way to fork to your own account or you will have a link to go to your forked repository. Clicking on either takes you to the forked repository.
- You can confirm that this repository is a fork of the original repository by finding the "forked from CatsInTech/Rezume" text under the repository name.
- Click on Clone or download button on the forked repository. Make sure you are cloning your version (GitHub.com/<your username>/Rezume) and not the CatsInTech organisation's.
- I use a
git clone
command with my username attached in front of thegithub.com
, making the clone command look likegit clone https://[email protected]/praveenscience/Rezume.git
. This is for making sure, the compatibility is maximum.
- Let's say I am going to start working on the
Issue #2
. Create a new branch with the format ofissue#-subject
, here it is2-cname-update
. I use command line a lot so I am confident of what command I am using. If you're comfortable with GUI, feel free to use it, but make sure you use the right naming convention. The complete command I have used here isgit checkout -b 2-cname-update
.
- Make all your changes in your favourite IDE. Make sure you adhere to the linting rules given in My Personal Development Environment blog post, under Visual Studio Code. There's also My Visual Studio Code Settings with all the extensions I use. You don't need to use all but make sure you follow the prettier guidelines at least, which will have mostly the default ones like double quotes, no trailing quotes and spaces, line width of 80 characters or less, etc. If you have issues setting up your development environment, please contact me.
- Once you make changes, you can see the changed files. Make sure no unintended changes are there (new files added, changed files aren't recognised, etc.), which you can see by checking the
git status
command and looking at the workspace.
- Use a good diff tool to check if the changes are indeed intended. I use
git diff --color
to check the diffs between the changes.
- If everything looks alright, add the files to staging by using
git add <filename>
. If you want to add all the files and if there are many files, you can usegit add .
. Usegit status
again to verify the changes that are added.
- Once you have added the files to staging and checked the integrity of changes, you can start writing the commit message. The commit message should follow Git Standards followed in our way of Spotify Agile Methodology. The main two points you need to note are 50 characters for commit subjects and 72 characters for commit message lines. At the end of the commit message, make sure you write
Fixes #<issue number>.
. We are following sentence case everywhere and a past tense. Please follow the same. When you push for the first time, please use the-u
flag and give the full branch name. As my branch name is2-cname-update
and this is the first time I am pushing, I will dogit push -u origin 2-cname-update
. Once you do this, the command automatically gives you the link for creating Pull Request as a response from remote. In my case, it washttps://github.com/praveenscience/Rezume/pull/new/2-cname-update
.
- Either navigate to the URL that you received in the above step or just go to your repository. You can see a banner informing you about your recently pushed branches and will also give you an option to Compare & pull request. Click on the button to open the pull request.
- In the Open a pull request page, you will be shown with the commit details. Make sure you enter a valid commit message explaining what you have done and give a few points on what has happened. Don't forget to add the last line
Fixes #<issue number>.
at the end. Also, make sure to notify the mentors & admin of the project by clicking on the gear icon next to Reviewers on the right side. Click on Create pull request to create the pull request for review.
- Here you have created the pull request successfully. You can check the correct number of commits and the files changed are perfect here. One of the reviewers will be with you shortly to check the Pull Request and gives you feedback, if there are any.
- Once the pull request looks satisfying to the maintainers / mentors, your pull request will be merged. You may (or may not) delete your branch at this moment.
- After merging new code into the
CatsInTech/Rezume
repository, your fork'smaster
branch might be outdated. To make sure yourmaster
branch is latest, you need to pull the latest code from the upstream repositoryCatsInTech/Rezume
to your local machine'smaster
branch and then push to your origin repository<your username>/Rezume
.
- To do the above step, you need to add the remote upstream as
upstream
ingit remote
. Make sure you do this only once. This is a repository level configuration, which means, you don't need to do it every time you create a new branch. I use this commandgit remote add upstream https://[email protected]/CatsInTech/Rezume.git
to add the upstream repository. Make sure yourupstream
repository points toCatsInTech/Rezume
while yourorigin
repository points to<your username>/Rezume
. You can check that by entering thegit remote -v
command.
- The first step is to pull from the
upstream
and second step is to push to theorigin
. Remember,upstream
is the author's andorigin
is yours and you are updating yourorigin
'smaster
branch with the latest code fromupstream
's master branch. To do this, check out to master branch by usinggit checkout master
, pull the latest code from the upstream's repository by usinggit pull upstream master
(at this point, your local is sync'd with author's repo) and update your forked repository's master branch by usinggit push
. If you follow the instructions correctly, there shouldn't be any issues pushing, but if you encounter any issues, I'll create a new section, commonly encountered issues, which you may refer. The above said three commands should give you a result like below.
- Now after pushing the changes, if you check your forked repository in GitHub, you must be able to see
This branch is even with CatsInTech:master.
. If that's not present, then either you haven't pushed it yet or you aren't in the master branch.
- Now this way, your local
master
branch is in sync with theupstream
's repository. If you want to work on a new issue, create a new branch by usinggit checkout -b <issue number>-subject
. In my case, for my Issue #19, I am going to use this command,git checkout -b 19-contributions-doc
. Start working and then go to step #6 again and repeat.
Although this has been stolen from Rezume project, this is similar to any GitHub flow. As always, if you have any questions regarding Git, please do reach out to me on Discord.
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 at [email protected]. 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.