Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 631 Bytes

CONTRIBUTING.md

File metadata and controls

36 lines (28 loc) · 631 Bytes

Git

Installation

https://www.linode.com/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/

Clone repository

git clone https://github.com/dawidkopczyk/grupa_ads.git

Contribute

  1. Do changes

  2. Commit changes (make sure you are in the right folder grupa_ads)

git add .
git commit -m some_name
  1. Create local branch
git checkout -b branch_name
  1. Push from local branch to remote branch
git push origin branch_name
  1. Go to Github and create pull request.

  2. Come back to master and delete branch

git checkout master
git branch -d branch_name