[cs631apue] group names

Jan Schaumann jschauma at stevens.edu
Mon Nov 10 23:13:24 EST 2014


Hello,

As per tonight's slides
(https://www.cs.stevens.edu/~jschauma/631/lecture10.pdf), you should
each verify that you have access to your team's git repository and can
create/update files in there.

On linux-lab.cs.stevens.edu, find out which groups you're a member of by
running the 'groups' command.  Then, use the group name as TEAM in the
following commands:

git clone ${USER}@linux-lab.cs.stevens.edu:~jschauma/apue/${TEAM}
cd ${TEAM}
$EDITOR README
git add README
git commit README
git push


If you were to import a number of files you have already (such as from
the first milestone / HW3), you could add them all in one swoop as

cp .../wherever/* .
git add .
git commit
git push

You can use your favorite search engine to find a suitable tutorial for
git(1)'s basic usage.

If you run into problems, please send a mail to this mailing list.

-Jan


More information about the cs631apue mailing list