In this project, you will clone a Git repository from Kit, modify the
program, test it, and commit and push your changes back to Kit.
This project provides practice with basic C programming and using
git
for the edit/add/commit/push software development cycle.
(Additional Reference: The Kit
Help Page
Working with Kit Repositories
(plain text version) covers the commands introduced
in this assignment.)
You should work on this project individually. You may talk to your neighbors in class, or to friends or the TAs in the Collaboration Center, but you should submit your own work. Don't forget to document any help you receive in your program.
Throughout this course, you will be submitting your programs to Kit as Git repositories. This means that you need to start each assignment by cloning an existing Kit repository for the assignment. Some starting repositories will be empty; some will come with code for you to modify or enhance.
git@kit.cs.kzoo.edu:r190
) so you can paste it later.cd
(takes you to your home directory)ls
(list files; you should see the directory for this course)cd cs230
(now go to your directory for this course)git clone fullRepoName
(use the full repository name you copied above)ls
(list files; you'll see short repo name, e.g.,r190
)mv repo PowersOf2
(e.g.,mv r190 PowersOf2
)
mv
("move") command renames the repository directory to a
name that more clearly identifies this project. This will be useful when
you have several projects that would otherwise have nearly identical names.
cd PowersOf2
). Use the ls
command to see what files
are there. Read the README.txt
file to learn what the program
does and how to compile and run it.
You can view a file at the command line with theAt the command line, compile and run the code to see if it does what thecat
command (e.g.,cat README.txt
) or you can bring up VS Code for the entire directory (code .
) and then view all the files in the editor. (A dot by itself (.
) refers to the current directory in Linux/Unix.)
README
file says it does.
Remember that you can use the ls
command to see
what files are there before and after you compile.
powersOfTwo.c
to see
what it does.
(You can read through printIntAsBinary.c
too, if you want,
but it uses some advanced, uncommon features that are beyond the scope
of this project.)
powersOfTwo.c
source file to add a loop so that
the program prints the powers of 2 up to (and including)
28, as it claims to do. Save the file, then compile and run
the program. Continue with this cycle to debug the program, as
necessary.
⇒
What happens with 28? What change do you need to make
to how you are calling printIntAsBinary
to
print the binary value correctly?
As specified in the syllabus, your program should adhere to the Kalamazoo College CS Program Style Guide and Documentation Standards, including use of the Braces Line Up style pattern.
README
) documentation to
better reflect the current state of the program.
(The purpose of external documentation is to provide enough information
for a new user to know how (and why) to use your program.)
git status
to see what files
you have changed.
git add sourceFile.c
(Or git add *.c
to add all C source files.)
Add any modified source files to the Git "staging area". You
need to do this again whenever you modify a file, before
committing it.
Do NOT add your executable to the staging area. The executable is specific to your machine, or at least your architecture. Only add source files to the repository.
git status
to confirm that you
are ready to commit.
git commit -m "Short description of change"
git commit -m "Add loop to print powers of 2
through 2^8"
)
git push
to push it to Kit.
⇒ Note: Do you recognize 210?
README
) documentation to
reflect the current state of the program.
commit
command.
Then push the modifications to Kit.
You can complete the edit/add/commit/push cycle repeatedly. In fact, pushing versions of your project while it is still under construction is a way to create backups of your work as you go.