Making Changes
Goals
- Learn how to monitor the state of the working directory
Change the “Hello, World” program.
It’s time to change our hello program to take an argument from the command line. Change the file to be:
hello.rb
puts "Hello, #{ARGV.first}!"
Check the status
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")
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
Let’s stage the change.
当前内容版权归 gitimmersion 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 gitimmersion .