Skip to content

Latest commit

 

History

History
69 lines (45 loc) · 2.47 KB

File metadata and controls

69 lines (45 loc) · 2.47 KB

Contents

Before Your First Pull Request

Thank you for your interest in the WeVote WebApp project. Please let us know if we can help you get started. (contact info: https://github.com/wevote)

This document includes the steps you need to take before your first WeVote pull request. We recommend reading “What the Heck is a Pull Request?” before following these steps.

Please sign the Contributor License Agreement before getting started.

Get Your Command Line Ready

cd /Users/DaleMcGrew/NodeEnvironments/WebAppEnv/ # Activate your node environment

. bin/activate

cd /Users/DaleMcGrew/PythonProjects/PersonalGitForks/WebApp # Change to directory where you checked out your Personal Fork from github

Before creating a branch to work in, first make sure you’re on your local master branch git checkout master

Next, make sure that master is in sync with the upstream source of truth: git fetch upstream and then git rebase upstream/master Or, if you prefer git pull upstream master --rebase


Next: Creating a Pull Request

Go back to Readme Home