Here are steps for setting up a shared directory for groups of students to work on the same project. While the instructions are written in the context of the BiTT Project, they apply equally well to working in pairs on your final project.
mkdir bitt-proj
chmod 775 bitt-proj
This would make Matthew Vassar’s bitt-proj directory read/write/executable by the other students in his group (and technically, by anyone in the class).
From the command line, if another user wanted to cd into the shared directory, they would issue the command:
cd ~mavassar/bitt-proj
Similarly, from jEdit, another user could open files stored in your by navigating the open file browser to:
/home
/mavassar
/bitt-proj
(and similarly save files from jEdit into the same directory.)
If there was a file another user wanted to copy into or from the shared directory: (remember the cp command copies from-file → to-file)
cp ~mavassar/bitt-proj/shared-file my-file
cp myfile ~mavassar/bitt-proj/shared-file