We'll keep all documentation and code here..
Feel free to modify this.
- /doc/templates - Documentation templates
- /doc/meetings - Meeting notes
- /doc/timetables - Time sheets
- /doc/project_report - Project report
Each section should have a separate folder in /doc/project_report. Every section folder should include a "index.tex" file that will be included in the main report document.
Example: Simplified pre-study section
- /doc/project_report/prestudy - Pre-Study folder
- /doc/project_report/prestudy/index.tex - Main Pre-Study file
- /doc/project_report/prestudy/artsdatabanken.tex - Domain research
- /doc/project_report/prestudy/tech_comparison.tex - Comparison of technologies (android, ios, etc..)
index.tex will include artsdatabanken.tex and tech_comparison.tex, the main report file will include index.tex.
- /src
- /src/main
- /src/test
- /src/sandbox
Default settings for Eclipse:
- Use tabs for indentation (not spaces)
git add -A .
git commit -m "I made some change.."
git push
Explanation
- Let git know which files you would like to commit (. is the current folder)
- Commit the files to your local repository
- Push the changes into the server
NB! Before doing a pull, commit your changes or they can be lost forever.
git pull
This will give you information on which files will be commited next, conflicts, etc.
git status