GitHug一步一步通关帖(三)

第十三题:将修改的文件暂存

➜  git_hug git:(master) ✗ 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:   lyrics.txt

no changes added to commit (use "git add" and/or "git commit -a")
➜  git_hug git:(master) ✗ git stash
Saved working directory and index state WIP on master: 0206059 Add some lyrics
HEAD is now at 0206059 Add some lyrics
➜  git_hug git:(master) git status
On branch master
nothing to commit, working directory clean
➜  git_hug git:(master) githug play
********************************************************************************
*                                    Githug                                    *
********************************************************************************
Congratulations, you have solved the level!

Name: rename
Level: 14
Difficulty: ***

We have a file called `oldfile.txt`. We want to rename it to `newfile.txt` and stage this change.

第十四题:重新命名

➜  git_hug git:(master) git status
On branch master
nothing to commit, working directory clean
➜  git_hug git:(master) git mv oldfile.txt newfile.txt
➜  git_hug git:(master) ✗ githug play
********************************************************************************
*                                    Githug                                    *
********************************************************************************
Congratulations, you have solved the level!
Name: restructure
Level: 15
Difficulty: ***
You added some files to your repository, but now realize that your project needs to be restructured.  Make a new folder named `src`, and move all of the .html files into this folder.

第十五题:创建一个文件夹src,将.html文件添加到这个文件中









你可能感兴趣的:(GitHug一步一步通关帖(三))