and access it at http://hda:3000
* You can see your changes with two git tools: status and diff
git status
this gives you a list of what files were modified, added or removed. you can see changes in your area with:
git diff --cached
when you know you want to modify a file, you add it to the changes to be committed:
git add README (for example)
for the parts that are added and checked in, you can see the changes with
git diff
this is what will be committed!
* Then commit your changes to your git repo:
git commit
* After that you can generate a patch to be sent upstream, e.g. for a patch of the latest commit: