I have a repo on GitHub and I want to update it with changes made to the folder I pulled it from.
What are the steps, without jargon or short hand terms, a new Git u
The most simple flow is this:
# clone the repository (from github, for example)
git clone git@github.com:username/reponame.git
cd reponame
# edit some files
# add them to the index
git add file1.txt
git add file2.gif
# review your changes
git status
# commit the changes
git commit -m "Decription of my change"
# push them back to the remote repository
git push origin master
This is the basic flow that should get you going. However, there's lots of resources for learning the basics of git, I highly recommend you go over them. Getting started is really not that difficult as it seems.