Made some changes to the UNIX 102 page; added git add, link to gitref.

This commit is contained in:
Elana Hashman 2012-03-08 15:09:10 -05:00
parent eab76bff34
commit b8b61e2dd4
1 changed files with 10 additions and 4 deletions

View File

@ -7,6 +7,7 @@
<section title="UNIX 102 Reference Material"> <section title="UNIX 102 Reference Material">
<p> <p>
<!-- http://programmerryangosling.tumblr.com/ -->
This page contains some links to material covered during UNIX 101 and 102, This page contains some links to material covered during UNIX 101 and 102,
as well as some extracurricular content for you to review in your free as well as some extracurricular content for you to review in your free
time. time.
@ -48,9 +49,8 @@
<ul> <ul>
<li>Simple script whose parameters are any number of text files, that will <li>Simple script whose parameters are any number of text files, that will
print all the files and filenames to standard output: appender</li> print all the files and filenames to standard output: appender</li>
<li>Simple renaming script that takes two strings, one to replace with the <li>RunC clone, that takes in a filename and executes all the tests it
other, and renames all files in the current directory as specified: can find for it in the current directory: WalkC</li>
renamer</li>
<li>Script that scrapes concert website for tickets and sends emails/text <li>Script that scrapes concert website for tickets and sends emails/text
messages when tickets are available: tickets_email</li> messages when tickets are available: tickets_email</li>
</ul> </ul>
@ -66,7 +66,9 @@
<section title="git References"> <section title="git References">
<p> <p>
Here's an article I found claiming to list the <a href="http://sixrevisions.com/resources/git-tutorials-beginners/">top 10 git tutorials</a>. Look to the <a href="http://gitref.org/index.html">gitref</a> for a git
reference, of course. As well, here's an article I found claiming to list
the <a href="http://sixrevisions.com/resources/git-tutorials-beginners/">top 10 git tutorials</a>.
Whether or not that's true, you should still learn something. Whether or not that's true, you should still learn something.
Here is also a brief review of the commands we covered today. Here is also a brief review of the commands we covered today.
</p> </p>
@ -79,6 +81,10 @@
<pre> <pre>
git pull git pull
</pre> </pre>
This adds new files to the git repository:
<pre>
git add [files]
</pre>
This commits any of the changes that you've recently made in [files] (or -a This commits any of the changes that you've recently made in [files] (or -a
for everything), getting ready to "push" the changes to other users: for everything), getting ready to "push" the changes to other users:
<pre> <pre>