Pull Request - a-rayamajhi/bcrs GitHub Wiki
Fork this repository
Clone your forked repository
Set Upstream
add my repository url as upstream
git remote add upstream <repo url>
Pull changes from upstream
git pull upstream develop
Push changes to origin
git add -A (add to stage)
git commit -m"<message> (Commit chang)
git push -uv origin <branch name>
Make Pull request
Go to gitHub Repo and make pull request to upstream develop branch
Useful Git Resources
Branch off of develop
branch
New Branch. Suggested branch name
username-<task #>
git checkout -b arayamajhi-1
Existing Branch
git checkout arayamajhi-1
For Existing Branch, Merge changes to the working branch(arayamajhi-1)
git merge --no-ff develop