[ecssync@ecssync ~]$ githug ******************************************************************************** * Githug * ******************************************************************************** No githug directory found, do you wish to create one? [yn] y Welcome to Githug!
1 - 10
1:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
Q:
Name: init Level: 1 Difficulty: *
A new directory, `git_hug`, has been created; initialize an empty repository in it.
ecssync@ecssync git_hug]$ git init Initialized empty Git repository in /home/ecssync/git_hug/.git/
[ecssync@ecssyncgit_hug]$ githug play ******************************************************************************** * Githug * ******************************************************************************** Congratulations, you have solved the level!
[ecssync@ecssyncgit_hug]$ git config user.name mark [ecssync@ecssyncgit_hug]$ git config user.email mark.he.1314@gmail.com [ecssync@ecssyncgit_hug]$ githug play ******************************************************************************** * Githug * ******************************************************************************** What is your name? mark What is your email? mark.he.1314@gmail.com Your config has the following name: mark Your config has the following email: mark.he.1314@gmail.com Congratulations, you have solved the level!
3:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Q:
Name: add Level: 3 Difficulty: *
There is a file in your folder called `README`, you should add it to your staging area Note: You start each level with a new repo. Don't look for files from the previous one. ******************************************************************************** A: [ecssync@ecssync git_hug]$ git add README [ecssync@ecssync git_hug]$ githug play ******************************************************************************** * Githug * ******************************************************************************** Congratulations, you have solved the level!
[ecssync@ecssyncgit_hug]$ githug play ******************************************************************************** * Githug * ******************************************************************************** Congratulations, you have solved the level!
The text editor 'vim' creates files ending in `.swp` (swap files) for all files that are currently open. We don't want them creeping into the repository. Make this repository ignore those swap files which are ending in `.swp`. ******************************************************************************** A: ecssync@ecssync git_hug]$ vim .gitignore [ecssync@ecssync git_hug]$ cat .gitignore .profile.yml .gitignore *.swp [ecssync@ecssync git_hug]$ githug play ******************************************************************************** * Githug * ******************************************************************************** Congratulations, you have solved the level!
[ecssync@ecssyncgit_hug]$ vim .gitignore [ecssync@ecssyncgit_hug]$cat .gitignore .profile.yml .gitignore *.a !lib.a
[ecssync@ecssyncgit_hug]$ githug play ******************************************************************************** * Githug * ******************************************************************************** Congratulations, you have solved the level!
[ecssync@ecssyncgit_hug]$ git status # On branch master # # Initial commit # # Changes to be committed: # (use "git rm --cached <file>..." to unstage) # # new file: Guardfile # new file: README # new file: config.rb # new file: deploy.rb # new file: setup.rb # # Untracked files: # (use "git add <file>..." to include in what will be committed) # # database.yml [ecssync@ecssyncgit_hug]$ githug play ******************************************************************************** * Githug * ******************************************************************************** What is the full file name of the untracked file? database.yml Congratulations, you have solved the level!
[ecssync@ecssync git_hug]$ git status # On branch master # Changes to be committed: # (use "git reset HEAD <file>..." to unstage) # # new file: rubyfile1.rb # modified: rubyfile4.rb # # 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: rubyfile5.rb # # Untracked files: # (use "git add <file>..." to include in what will be committed) # # rubyfile6.rb # rubyfile7.rb
[ecssync@ecssync git_hug]$ githug play ******************************************************************************** * Githug * ******************************************************************************** How many changes are going to be committed? 2 Congratulations, you have solved the level!
[ecssync@ecssyncgit_hug]$ git status # On branch master # Changes not staged for commit: # (use "git add/rm <file>..." to update what will be committed) # (use "git checkout -- <file>..." to discard changes in working directory) # # deleted: deleteme.rb # no changes added to commit (use "git add" and/or "git commit -a") [ecssync@ecssyncgit_hug]$ git rm deleteme.rb rm'deleteme.rb' [ecssync@ecssyncgit_hug]$ githug play ******************************************************************************** * Githug * ******************************************************************************** Congratulations, you have solved the level!
A file has accidentally been added to your staging area, find out which file and remove it from the staging area. *NOTE* Do not remove the file from the file system, only from git.
[ecssync@ecssyncgit_hug]$ git status # On branch master # # Initial commit # # Changes to be committed: # (use "git rm --cached <file>..." to unstage) # # new file: deleteme.rb # [ecssync@ecssyncgit_hug]$ git rm--cached deleteme.rb rm'deleteme.rb' [ecssync@ecssyncgit_hug]$ git status # On branch master # # Initial commit # # Untracked files: # (use "git add <file>..." to include in what will be committed) # # deleteme.rb nothing added to commit but untracked files present (use "git add" to track) [ecssync@ecssyncgit_hug]$ githug play ******************************************************************************** * Githug * ******************************************************************************** Congratulations, you have solved the level!
[ecssync@ecssyncgit_hug]$ 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") [ecssync@ecssyncgit_hug]$ git stash Saved working directory and index state WIP on master: 0206059 Add some lyrics HEAD is now at 0206059 Add some lyrics [ecssync@ecssyncgit_hug]$ githug play ******************************************************************************** * Githug * ******************************************************************************** Congratulations, you have solved the level!
[ecssync@ecssyncgit_hug]$ls oldfile.txt [ecssync@ecssyncgit_hug]$ git mv oldfile.txt newfile.txt [ecssync@ecssyncgit_hug]$ git status # On branch master # Changes to be committed: # (use "git reset HEAD <file>..." to unstage) # # renamed: oldfile.txt -> newfile.txt # [ecssync@ecssyncgit_hug]$ githug play ******************************************************************************** * Githug * ******************************************************************************** Congratulations, you have solved the level!
You added some files to your repository, but now realize that your project needs to be restructured. Make a new folder named `src` and using Git move all of the .html files into this folder.
THIS IS THE COMMIT YOU ARE LOOKING FOR! [ecssync@ecssync git_hug]$ githug play ******************************************************************************** * Githug * ******************************************************************************** What is the hash of the most recent commit? c2e4b191f112fc2c3d5f8372dcf28dd8b2ae34b9 Congratulations, you have solved the level!
17:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
Q:
Name: tag Level: 17 Difficulty: **
We have a git repo and we want to tag the current commit with `new_tag`.
[ecssync@ecssyncgit_hug]$ git tag new_tag [ecssync@ecssyncgit_hug]$ githug ******************************************************************************** * Githug * ******************************************************************************** Congratulations, you have solved the level!
There are tags in the repository that aren't pushed into remote repository. Push them now. From /tmp/d20200721-9363-o8bjo9/ * [new branch] master -> origin/master ******************************************************************************** A: [ecssync@ecssync git_hug]$ git tag tag_to_be_pushed [ecssync@ecssync git_hug]$ git push --tags Total 0 (delta 0), reused 0 (delta 0) To /tmp/d20200721-9363-o8bjo9/.git * [new tag] tag_to_be_pushed -> tag_to_be_pushed [ecssync@ecssync git_hug]$ githug ******************************************************************************** * Githug * ******************************************************************************** Congratulations, you have solved the level!
The `README` file has been committed, but it looks like the file `forgotten_file.rb` was missing from the commit. Add the file and amend your previous commit to include it.
[ecssync@ecssync git_hug]$ git status # On branch master # Untracked files: # (use "git add <file>..." to include in what will be committed) # # forgotten_file.rb nothing added to commit but untracked files present (use "git add" to track) [ecssync@ecssync git_hug]$ git log commit 16fd6b783380c4588d9741d7d83bd009d2ecb79c Author: ecssync <ecssync@ecssync.local> Date: Tue Jul 21 14:20:04 2020 +0800
2 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 README create mode 100644 forgotten_file.rb [ecssync@ecssync git_hug]$ git status # On branch master nothing to commit, working directory clean
[ecssync@ecssync git_hug]$ githug ******************************************************************************** * Githug * ******************************************************************************** Congratulations, you have solved the level!
There are two files to be committed. The goal was to add each file as a separate commit, however both were added by accident. Unstage the file `to_commit_second.rb` using the reset command (don't commit anything). ******************************************************************************** A: [ecssync@ecssync git_hug]$ git status # On branch master # Changes to be committed: # (use "git reset HEAD <file>..." to unstage) # # new file: to_commit_first.rb # new file: to_commit_second.rb # [ecssync@ecssync git_hug]$ git reset to_commit_second.rb [ecssync@ecssync git_hug]$ githug ******************************************************************************** * Githug * ******************************************************************************** Congratulations, you have solved the level!
-q, --quiet be quiet, only report errors --mixed reset HEAD and index --soft reset only HEAD --hard reset HEAD, index and working tree --merge reset HEAD, index and working tree --keep reset HEAD but keep local changes -p, --patchselect hunks interactively
[ecssync@ecssyncgit_hug]$ git reset --soft HEAD^1 [ecssync@ecssyncgit_hug]$ git status # On branch master # Changes to be committed: # (use "git reset HEAD <file>..." to unstage) # # new file: newfile.rb # [ecssync@ecssyncgit_hug]$ git log commit 1f3668c9fe9c22bacd703d46485d6329ffa1fc41 Author: ecssync <ecssync@ecssync.local> Date: Tue Jul 2114:27:252020 +0800
Initial commit [ecssync@ecssyncgit_hug]$ githug ******************************************************************************** * Githug * ******************************************************************************** Congratulations, you have solved the level!
A file has been modified, but you don't want to keep the modification. Checkout the `config.rb` file from the last commit. ******************************************************************************** A: [ecssync@ecssync git_hug]$ 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: config.rb # no changes added to commit (use "git add" and/or "git commit -a") [ecssync@ecssync git_hug]$ git checkout -- config.rb [ecssync@ecssync git_hug]$ githug ******************************************************************************** * Githug * ******************************************************************************** Congratulations, you have solved the level!
[ecssync@ecssyncgit_hug]$ git remote my_remote_repo [ecssync@ecssyncgit_hug]$ git remote -v my_remote_repo https://github.com/Gazler/githug (fetch) my_remote_repo https://github.com/Gazler/githug (push) [ecssync@ecssyncgit_hug]$ githug ******************************************************************************** * Githug * ******************************************************************************** What is the name of the remote repository? my_remote_repo Congratulations, you have solved the level!
[ecssync@ecssyncgit_hug]$ git remote -v my_remote_repo https://github.com/Gazler/githug (fetch) my_remote_repo https://github.com/Gazler/githug (push) remote_location https://github.com/githug/not_a_repo (fetch) remote_location https://github.com/githug/not_a_repo (push) [ecssync@ecssyncgit_hug]$ githug ******************************************************************************** * Githug * ******************************************************************************** What is the url of the remote repository? https://github.com/githug/not_a_repo Congratulations, you have solved the level!
Fetch one or more remote refs and merge it/them into the current HEAD. [ecssync@ecssyncgit_hug]$ git pull origin master From https://github.com/pull-this/thing-to-pull * branch master -> FETCH_HEAD [ecssync@ecssyncgit_hug]$ githug ******************************************************************************** * Githug * ******************************************************************************** Congratulations, you have solved the level!
27:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
Q:
Name: remote_add Level: 27 Difficulty: **
Add a remote repository called `origin` with the url https://github.com/githug/githug
[ecssync@ecssyncgit_hug]$ git rebase origin/master First, rewinding head to replay your work on top of it... Applying: First commit Applying: Second commit Applying: Third commit [ecssync@ecssyncgit_hug]$ git status # On branch master # Your branch is ahead of 'origin/master' by 3 commits. # (use "git push" to publish your local commits) # nothing to commit, working directory clean [ecssync@ecssyncgit_hug]$ git push origin master Counting objects: 7, done. Delta compression using up to 8 threads. Compressing objects: 100% (6/6), done. Writing objects: 100% (6/6), 575 bytes | 0 bytes/s, done. Total 6 (delta 2), reused 0 (delta 0) To /tmp/d20200721-10098-1wufgfl/.git 95ea39b..34ef860 master -> master [ecssync@ecssyncgit_hug]$ githug ******************************************************************************** * Githug * ******************************************************************************** Congratulations, you have solved the level!
[ecssync@ecssyncgit_hug]$ 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: app.rb # no changes added to commit (use "git add" and/or "git commit -a") [ecssync@ecssyncgit_hug]$ git diff app.rb diff--git a/app.rb b/app.rb index 4f703ca..3bfa839 100644 --- a/app.rb +++ b/app.rb @@-23,7 +23,7@@ get '/yet_another'do erb :success end get '/another_page'do - @message = get_response('data.json') + @message = get_response('server.json') erb :another end
[ecssync@ecssyncgit_hug]$ githug ******************************************************************************** * Githug * ******************************************************************************** What is the number of the line which has changed? 26 Congratulations, you have solved the level!
[ecssync@ecssyncgit_hug]$ git status # On branch master nothing to commit, working directory clean [ecssync@ecssyncgit_hug]$ git checkout -b test_code Switched to a new branch 'test_code' [ecssync@ecssyncgit_hug]$ githug ******************************************************************************** * Githug * ******************************************************************************** Congratulations, you have solved the level!
32:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
Q:
Name: checkout Level: 32 Difficulty: **
Create and switch to a new branch called my_branch. You will need to create a branch like you did in the previous level.
[ecssync@ecssyncgit_hug]$ git checkout -b my_branch Switched to a new branch 'my_branch' [ecssync@ecssyncgit_hug]$ githug ******************************************************************************** * Githug * ******************************************************************************** Congratulations, you have solved the level!
[ecssync@ecssyncgit_hug]$ git checkout v1.2 Note: checking out 'v1.2'.
You are in'detached HEAD' state. You can look around, make experimental changes and commit them, and you can discard any commits you make in this state without impacting any branches by performing another checkout.
If you want to create a new branch to retain commits you create, you may do so (now or later) by using -b with the checkout command again. Example:
git checkout -b new_branch_name
HEAD is now at 6844746... Some more changes
[ecssync@ecssyncgit_hug]$ githug ******************************************************************************** * Githug * ******************************************************************************** Congratulations, you have solved the level!
[ecssync@ecssyncgit_hug]$ git branch * master v1.2 [ecssync@ecssyncgit_hug]$ git tag v1.0 v1.2 v1.5 [ecssync@ecssyncgit_hug]$ git checkout tags/v1.2 Note: checking out 'tags/v1.2'.
You are in'detached HEAD' state. You can look around, make experimental changes and commit them, and you can discard any commits you make in this state without impacting any branches by performing another checkout.
If you want to create a new branch to retain commits you create, you may do so (now or later) by using -b with the checkout command again. Example:
git checkout -b new_branch_name
HEAD is now at 4cc8649... Some more changes [ecssync@ecssyncgit_hug]$ githug ******************************************************************************** * Githug * ******************************************************************************** Congratulations, you have solved the level!
You've made some changes to a local branch and want to share it, but aren't yet ready to merge it with the 'master' branch. Push only 'test_branch' to the remote repository
We have a file in the branch 'feature'; Let's merge it to the master branch. ******************************************************************************** A: [ecssync@ecssync git_hug]$ git merge feature Updating e12277f..cc8ea5a Fast-forward file2 | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 file2 [ecssync@ecssync git_hug]$ git status # On branch master nothing to commit, working directory clean [ecssync@ecssync git_hug]$ githug ******************************************************************************** * Githug * ******************************************************************************** Congratulations, you have solved the level!
We are using a git rebase workflow and the feature branch is ready to go into master. Let's rebase the feature branch onto our master branch. ******************************************************************************** A: [ecssync@ecssync git_hug]$ git branch feature * master [ecssync@ecssync git_hug]$ git checkout feature Switched to branch 'feature' [ecssync@ecssync git_hug]$ git rebase master First, rewinding head to replay your work on top of it... Applying: add feature [ecssync@ecssync git_hug]$ githug ******************************************************************************** * Githug * ******************************************************************************** Congratulations, you have solved the level!
You have created your branch from `wrong_branch` and already made some commits, and you realise that you needed to create your branch from `master`. Rebase your commits onto `master` branch so that you don't have `wrong_branch` commits. ******************************************************************************** A: [ecssync@ecssync git_hug]$ git branch master * readme-update wrong_branch [ecssync@ecssync git_hug]$ git log commit ed867debbb0cbf7ce83112f7f72a43744c407cd7 Author: ecssync <ecssync@ecssync.local> Date: Tue Jul 21 15:01:12 2020 +0800 Add `Install` header in readme commit 385b5fb15c9e65e9c85aa910cf21ec71a78d43c2 Author: ecssync <ecssync@ecssync.local> Date: Tue Jul 21 15:01:12 2020 +0800 Add `About` header in readme commit 6cf72f834392c2d061d0580d6c70614d78b77713 Author: ecssync <ecssync@ecssync.local> Date: Tue Jul 21 15:01:12 2020 +0800 Add app name in readme commit b0cacccc9ed0a9b46d7b463533035354d3275196 Author: ecssync <ecssync@ecssync.local> Date: Tue Jul 21 15:01:12 2020 +0800 Wrong changes commit a7bfef30ddb70443802f742f219cc492a0bbddb0 Author: ecssync <ecssync@ecssync.local> Date: Tue Jul 21 15:01:12 2020 +0800 Create authors file [ecssync@ecssync git_hug]$ git rebase --onto master wrong_branch readme-update First, rewinding head to replay your work on top of it... Applying: Add app name in readme Applying: Add `About` header in readme Applying: Add `Install` header in readme [ecssync@ecssync git_hug]$ githug ******************************************************************************** * Githug * ******************************************************************************** Congratulations, you have solved the level!
Your new feature isn't worth the time and you're going to delete it. But it has one commit that fills in `README` file, and you want this commit to be on the master as well.
commit 4a1961bce62840eaef9c4392fe5cc799e38c9b7b Author: Andrey <aslushnikov@gmail.com> Date: Wed Mar 2802:27:182012 +0400
Fixed feature
commit ca32a6dac7b6f97975edbe19a4296c2ee7682f68 Author: Andrey <aslushnikov@gmail.com> Date: Wed Mar 2802:25:512012 +0400
Filled in README.md with proper input
commit 58a8c8edcfdd00c6d8cce9aada8f987a1677571f Author: Andrey <aslushnikov@gmail.com> Date: Wed Mar 2802:24:412012 +0400
Added a stub for the feature
commit ea3dbcc5e2d2359698c3606b0ec44af9f76def54 Author: Andrey <aslushnikov@gmail.com> Date: Wed Mar 2802:20:322012 +0400
Initial commit [ecssync@ecssyncgit_hug]$ git checkout master Switched to branch 'master' [ecssync@ecssyncgit_hug]$ git cherry-pick ca32a6dac7b6f97975edbe19a4296c2ee7682f68 [master5c78d26] Filled in README.md with proper input Author: Andrey <aslushnikov@gmail.com> ... 1 file changed, 1 insertion(+), 2 deletions(-) [ecssync@ecssyncgit_hug]$ githug ******************************************************************************** * Githug * ******************************************************************************** Congratulations, you have solved the level!
44:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
Q:
Name: grep Level: 44 Difficulty: **
Your project's deadline approaches, you should evaluate how many TODOs are left in your code ******************************************************************************** A: [ecssync@ecssync git_hug]$ git grep 'TODO' | wc -l 4 [ecssync@ecssync git_hug]$ githug ******************************************************************************** * Githug * ******************************************************************************** How many items are there in your todolist? 4 Congratulations, you have solved the level!
Initial commit [ecssync@ecssyncgit_hug]$ githug ******************************************************************************** * Githug * ******************************************************************************** Congratulations, you have solved the level!
##############################vim editor############################## pick c4fef0e Adding README squash 5caa017 Updating README (squash this commit into Adding README) squash 7bc5942 Updating README (squash this commit into Adding README) squash 9100103 Updating README (squash this commit into Adding README)
# Rebase a7aa916..9100103 onto a7aa916 # # Commands: # p, pick = use commit # r, reword = use commit, but edit the commit message # e, edit = use commit, but stop for amending # s, squash = use commit, but meld into previous commit # f, fixup = like "squash", but discard this commit's log message # x, exec = run command (the rest of the line) using shell # # These lines can be re-ordered; they are executed from top to bottom. # # If you remove a line here THAT COMMIT WILL BE LOST. # # However, if you remove everything, the rebase will be aborted. # # Note that empty commits are commented out ##############################vim editor############################## [ecssync@ecssyncgit_hug]$ git log commit 3d3b91a9e2d2186f6f416bf536e014cbdcec457c Author: ecssync <ecssync@ecssync.local> Date: Tue Jul 2115:53:212020 +0800
Adding README
Updating README (squash this commit into Adding README)
Updating README (squash this commit into Adding README)
Updating README (squash this commit into Adding README)
Initial Commit [ecssync@ecssyncgit_hug]$ githug ******************************************************************************** * Githug * ******************************************************************************** Congratulations, you have solved the level!
[ecssync@ecssyncgit_hug]$ git branch long-feature-branch * master [ecssync@ecssyncgit_hug]$ git merge --squash long-feature-branch Squash commit -- not updating HEAD Automatic merge went well; stopped before committing as requested [ecssync@ecssyncgit_hug]$ git status # On branch master # Changes to be committed: # (use "git reset HEAD <file>..." to unstage) # # new file: file3 # [ecssync@ecssyncgit_hug]$ git commit -m"X" [master77ceea7] X Committer: ecssync <ecssync@ecssync.local>
1 file changed, 3 insertions(+) create mode 100644 file3 [ecssync@ecssyncgit_hug]$ githug ******************************************************************************** * Githug * ******************************************************************************** Congratulations, you have solved the level!
#############################vim editor############################## # pick 15176e9 First commit pick 676c1a4 Third commit pick de1362e Second commit ⬇️ pick 15176e9 First commit pick de1362e Second commit pick 676c1a4 Third commit ##############################vim editor##############################
[ecssync@ecssyncgit_hug]$ githug ******************************************************************************** * Githug * ******************************************************************************** Congratulations, you have solved the level!
A bug was introduced somewhere along the way. You know that running `ruby prog.rb 5` should output 15. You can also run `make test`. What are the first 7 chars of the hash of the commit that introduced the bug.
[ecssync@ecssyncgit_hug]$ git log --pretty=oneline 12628f463f4c722695bf0e9d603c9411287885db Another Commit 979576184c5ec9667cf7593cf550c420378e960f Another Commit 028763b396121e035f672ef5af75d2dcb1cc8146 Another Commit 888386c77c957dc52f3113f2483663e3132559d4 Another Commit bb736ddd9b83d6296d23444a2ab3b0d2fa6dfb81 Another Commit 18ed2ac1522a014412d4303ce7c8db39becab076 Another Commit 5db7a7cb90e745e2c9dbdd84810ccc7d91d92e72 Another Commit 7c03a99ba384572c216769f0273b5baf3ba83694 Another Commit 9f54462abbb991b167532929b34118113aa6c52e Another Commit 5d1eb75377072c5c6e5a1b0ac4159181ecc4edff Another Commit fdbfc0d403e5ac0b2659cbfa2cbb061fcca0dc2a Another Commit a530e7ed25173d0800cfe33cc8915e5929209b8e Another Commit ccddb96f824a0e929f5fecf55c0f4479552246f3 Another Commit 2e1735d5bef6db0f3e325051a179af280f05573a Another Commit ffb097e3edfa828afa565eeceee6b506b3f2a131 Another Commit e060c0d789288fda946f91254672295230b2de9d Another Commit 49774ea84ae3723cc4fac75521435cc04d56b657 Another Commit 8c992afff5e16c97f4ef82d58671a3403d734086 Another Commit 80a9b3d94237f982b6c9052e6d56b930f18a4ef5 Another Commit f608824888b83bbedc1f658be7496ffea467a8fb First commit [ecssync@ecssyncgit_hug]$ git bisect HEAD f608824888b83bbedc1f658be7496ffea467a8fb usage: git bisect [help|start|bad|good|skip|next|reset|visualize|replay|log|run] [ecssync@ecssyncgit_hug]$ git bisect start HEAD f608824888b83bbedc1f658be7496ffea467a8fb Bisecting: 9 revisions left to test after this (roughly 3 steps) [fdbfc0d403e5ac0b2659cbfa2cbb061fcca0dc2a] Another Commit [ecssync@ecssyncgit_hug]$ make test ruby prog.rb 5 | ruby test.rb [ecssync@ecssyncgit_hug]$ git bisect good fdbfc0d403e5ac0b2659cbfa2cbb061fcca0dc2a Bisecting: 4 revisions left to test after this (roughly 2 steps) [18ed2ac1522a014412d4303ce7c8db39becab076] Another Commit [ecssync@ecssyncgit_hug]$ git bisect run make test running make test ruby prog.rb 5 | ruby test.rb make: *** [test] Error 1 Bisecting: 2 revisions left to test after this (roughly 1 step) [9f54462abbb991b167532929b34118113aa6c52e] Another Commit running make test ruby prog.rb 5 | ruby test.rb Bisecting: 0 revisions left to test after this (roughly 1 step) [5db7a7cb90e745e2c9dbdd84810ccc7d91d92e72] Another Commit running make test ruby prog.rb 5 | ruby test.rb 18ed2ac1522a014412d4303ce7c8db39becab076 is the first bad commit commit 18ed2ac1522a014412d4303ce7c8db39becab076 Author: Robert Bittle <guywithnose@gmail.com> Date: Mon Apr 2306:52:102012-0400
Another Commit
:100644100644917e70054c8f4a4a79a8e805c0e1601b455ad236 7562257b8e6446686ffc43a2386c50c254365020 M prog.rb bisect run success [ecssync@ecssyncgit_hug]$ githug ******************************************************************************** * Githug * ******************************************************************************** What are the first 7 characters of the hash of the commit that introduced the bug? 18ed2ac1522a014412d4303ce7c8db39becab076 Congratulations, you have solved the level!
You've made changes within a single file that belong to two different features, but neither of the changes are yet staged. Stage only the changes belonging to the first feature. ******************************************************************************** A: [ecssync@ecssync git_hug]$ git diff diff --git a/feature.rb b/feature.rb index 1a271e9..4a80dda 100644 --- a/feature.rb +++ b/feature.rb @@ -1 +1,3 @@ this is the class of my feature +This change belongs to the first feature +This change belongs to the second feature ----------> remove [ecssync@ecssync git_hug]$ [ecssync@ecssync git_hug]$ [ecssync@ecssync git_hug]$ git add -e feature.rb [ecssync@ecssync git_hug]$ git diff diff --git a/feature.rb b/feature.rb index 3bccd0e..4a80dda 100644 --- a/feature.rb +++ b/feature.rb @@ -1,2 +1,3 @@ this is the class of my feature This change belongs to the first feature +This change belongs to the second feature [ecssync@ecssync git_hug]$ git status # On branch master # Changes to be committed: # (use "git reset HEAD <file>..." to unstage) # # modified: feature.rb # # 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: feature.rb # [ecssync@ecssync git_hug]$ githug ******************************************************************************** * Githug * ******************************************************************************** Congratulations, you have solved the level!
You have committed several times but want to undo the middle commit. All commits have been pushed, so you can't change existing history. ******************************************************************************** A: [ecssync@ecssync git_hug]$ git log --pretty=oneline b2803390aa23abd6ff45faf62b117f002b612218 Second commit 1d140556c1ca8af6e70a8e98abc5e83491dc9f80 Bad commit 46445b467625aac78ef3ab499d79f7b7229c199f First commit [ecssync@ecssync git_hug]$ git revert 1d140556c1ca8af6e70a8e98abc5e83491dc9f80 --no-edit [master a77bae5] Revert "Bad commit" delete mode 100644 file3 [ecssync@ecssync git_hug]$ git log --pretty=oneline a77bae5a86c856cbb8f417b6c6f8c9f7ddf8c538 Revert "Bad commit" b2803390aa23abd6ff45faf62b117f002b612218 Second commit 1d140556c1ca8af6e70a8e98abc5e83491dc9f80 Bad commit 46445b467625aac78ef3ab499d79f7b7229c199f First commit [ecssync@ecssync git_hug]$ githug ******************************************************************************** * Githug * ******************************************************************************** Congratulations, you have solved the level!
You decided to delete your latest commit by running `git reset --hard HEAD^`. (Not a smart thing to do.) You then change your mind, and want that commit back. Restore the deleted commit.
[ecssync@ecssyncgit_hug]$ git log --pretty=oneline 5d4f0fe4f22a0b4fa72084b16bce2accab6b5ce4 First commit 70fec1926947443bd760b8e8c79fbb86d3b462fe Initial commit [ecssync@ecssyncgit_hug]$ git reflog 5d4f0fe HEAD@{0}: reset: moving to HEAD^ d7de144 HEAD@{1}: commit: Restore this commit 5d4f0fe HEAD@{2}: commit: First commit 70fec19 HEAD@{3}: commit (initial): Initial commit [ecssync@ecssyncgit_hug]$ git reset --hard d7de144 HEAD is now at d7de144 Restore this commit
[ecssync@ecssyncgit_hug]$ git log --pretty=oneline d7de144da5c4f506ab085a7a34e8a21c0b5c0db3 Restore this commit 5d4f0fe4f22a0b4fa72084b16bce2accab6b5ce4 First commit 70fec1926947443bd760b8e8c79fbb86d3b462fe Initial commit [ecssync@ecssyncgit_hug]$ git reflog d7de144 HEAD@{0}: reset: moving to d7de144 5d4f0fe HEAD@{1}: reset: moving to HEAD^ d7de144 HEAD@{2}: commit: Restore this commit 5d4f0fe HEAD@{3}: commit: First commit 70fec19 HEAD@{4}: commit (initial): Initial commit [ecssync@ecssyncgit_hug]$
[ecssync@ecssyncgit_hug]$ githug ******************************************************************************** * Githug * ******************************************************************************** Congratulations, you have solved the level!
You need to merge mybranch into the current branch (master). But there may be some incorrect changes in mybranch which may cause conflicts. Solve any merge-conflicts you come across and finish the merge.
[ecssync@ecssyncgit_hug]$ git branch * master mybranch [ecssync@ecssyncgit_hug]$ git merge mybranch Auto-merging poem.txt CONFLICT (content): Merge conflict in poem.txt Automatic merge failed; fix conflicts and then commit the result. [ecssync@ecssyncgit_hug]$ git status # On branch master # You have unmerged paths. # (fix conflicts and run "git commit") # # Unmerged paths: # (use "git add <file>..." to mark resolution) # # both modified: poem.txt # no changes added to commit (use "git add" and/or "git commit -a") [ecssync@ecssyncgit_hug]$ git diff diff--cc poem.txt index 3cb65be,1db9aa5..0000000 --- a/poem.txt +++ b/poem.txt @@@-1,5-1,4 +1,8@@@ Humpty dumpty ++<<<<<<< HEAD +Categorized shoes by color ++======= + Sat on a wall ++>>>>>>> mybranch Humpty dumpty Had a great fall - [ecssync@ecssyncgit_hug]$ vim poem.txt
[ecssync@ecssyncgit_hug]$ git status -s UU poem.txt [ecssync@ecssyncgit_hug]$ git add . [ecssync@ecssyncgit_hug]$ git commit -m"Merge from mybranch" [masterf9adf97] Merge from mybranch Committer: ecssync <ecssync@ecssync.local> ... ...
[ecssync@ecssyncgit_hug]$ githug ******************************************************************************** * Githug * ******************************************************************************** Congratulations, you have solved the level!
You want to include the files from the following repo: `https://github.com/jackmaney/githug-include-me` into a the folder `./githug-include-me`. Do this without manually cloning the repo or copying the files from the repo into this repo.
[ecssync@ecssyncgit_hug]$ git submodule add https://github.com/jackmaney/githug-include-me Cloning into 'githug-include-me'... remote: Enumerating objects: 9, done. remote: Total 9 (delta 0), reused 0 (delta 0), pack-reused9 Unpacking objects: 100% (9/9), done. [ecssync@ecssyncgit_hug]$ githug ******************************************************************************** * Githug * ******************************************************************************** Congratulations, you have solved the level!
56:
1 2 3 4 5
Name: contribute Level: 56 Difficulty: ***
This is the final level, the goal is to contribute to this repository by making a pull request on GitHub. Please note that this level is designed to encourage you to add a valid contribution to Githug, not testing your ability to create a pull request. Contributions that are likely to be accepted are levels, bug fixes and improved documentation.