-
Notifications
You must be signed in to change notification settings - Fork 46
How to contribute
Inha Briia edited this page Nov 22, 2016
·
6 revisions
The Selenium Shutterbug project welcomes contributions from everyone.
Fork the project on Github and check out your copy locally.
% git clone https://github.com/username/selenium-shutterbug.git
% cd selenium-shutterbug
% git remote add upstream https://github.com/assertthat/selenium-shutterbug.git
Create a feature branch and start improving:
% git checkout -b my-feature-branch
HEAD-based development is prefered, which means all changes are applied directly on top of master.
###Step 3: Commit
If you have not configured Git already, its right time to do it, by specifying your name and email:
% git config --global user.name 'Your Name'
% git config --global user.email '[email protected]'