lab 5 Making Changes
Goals
- Learn how to monitor the state of the working directory
Change the “Hello, World” program. 01
It’s time to change our hello program to take an argument from the command line. Change the file (with your favorite editor) to be:
File: hello.rb
puts "Hello, #{ARGV.first}!"
Check the status 02
Now check the status of the working directory.
Execute:
git status
You should see …
Output:
$ git status # On branch master # Changes not staged for commit: # (use "git add <file>..." to update what will be committed) # (use "git checkout -- <file>..." to discard changes in working directory) # # modified: hello.rb # no changes added to commit (use "git add" and/or "git commit -a")
NOTE: your output will be different since the repository contains some other history already.
The first thing to notice is that git knows that the hello.rb
file has been modified, but git has not yet been notified of these changes.
Also notice that the status message gives you hints about what you need to do next. If you want to add these changes to the repository, then use the git add
command. Otherwise the git checkout
command can be used to discard the changes.
Up Next 03
Let’s stage the change.