Upload your local folder as follows:
-
cd to/your/directory/with/your/name/folder (something like SSVT, where SSVT contains a folder "Henk", don't go into Henk!)
-
setup your github identity
git config --global user.name "John Doe" git config --global user.email johndoe@example.com
- Initialize git folder:
git init
- Add your files(Folder):
git add .
git commit -m "Your initial commit message"
- Setup the remote origin:
git remote add origin git@github.com:software-engineering-amsterdam/ST2018_WG_8.git
- Push your files:
git push origin master
- Every other time you make changes use: git add . git commit -m "Message" git push