rugk / crops-parser

🌱🍎🍆 A shell script to parse the data by the Food and Agriculture Organization of the United Nations on crops/fruits.
Other
15 stars 4 forks source link

Beginner's pull request #46

Closed cyanate closed 7 years ago

cyanate commented 7 years ago

I can't figure out how to actually send my changes from the commandline to this repo.

These are my changes:

osmcrops.csv area_harvested_2014.csv

rugk commented 7 years ago

Better try to learn it, it will be useful later… Fork this repo, clone it locally, make the changes and upload (push) them again. Then you can make the PR online. If these terms just confuse you, have a look at this guide e.g.. There is also a GUI from GitHub which simplifies the task, e.g.

rugk commented 7 years ago

Ah, now I found the correct help article: https://help.github.com/articles/github-flow/

cyanate commented 7 years ago

@rugk Ok, I've learned it (from commandline): https://github.com/rugk/crops-parser/pull/47 But I've got some encoding problems - are you or am I not using utf-8?

rugk commented 7 years ago

Basically:

git add . # add all changes to staging
git commit # commit staged changes, asks for commit message etc.
git push # upload changes
rugk commented 7 years ago

I use UTF-8. grafik

I also added the editorconfig file so you can use addons for most editors and things like encoding and line ending should be handled automatically.