This repository contains notes to the chapters present in the English Literature Syllabus of ISC 2017.
The project is structured in the following manner:
ISC-English-Literature-Notes
+- [Book name]
+- [Chapter name]
+- [Question].docx
+- [Question].pdf
+- [Question].txt
As an extra, I exported the theme I use in FocusWriter in the appropriate folder.
The basic structure of a file is:
Question:
(The text of the question goes here...)
Answer:
(The answer follows...)
For the first time, follow these step:
- First and foremost, you must be a collaborator. If you are not, request me (Subh0m0y) to make you one through e-mail.
- Download and install the lastest version of Git.
- Download and install FocusWriter. This is to ensure that all collaborators use the same tools, for the sake of uniformity. Also, if you want, download the theme at this location (click on the Raw button). Using it will ensure that the PDFs you export will conform to the standard.
- Choose a location where you would like to place the repository folder. Then open up that location in the terminal or command-line.
- Type
git clone https://github.com/Subh0m0y/ISC-English-Literature-Notes.git. This will create a new directory. - Navigate to that folder in the command-line.
- Add a new file or change an existing one (preferrably using FocusWriter).
- Type
git add * - Type
git commit -m "[Comment describing the changes]" - Type
git push -u origin master. You will be asked to enter your username and password everytime. - And you're done!
If you have already committed and pushed once, follow these steps:
- Open up the terminal and type
git pull origin master - Make necessary changes or add files.
- Type
git add *to add all files. - Type
git commit -m "[Comment goes here]" - Type
git push -u origin master. Enter your username and password.