Code Monkey home page Code Monkey logo

stage2-module1-git's Introduction

GIT

Materials

  1. The most useful git commands
  2. Vim

Practice

Important

  1. Please note that all commit messages, the amount of commits, branches names must be the same as in tasks to successfully pass tests.
  2. After the task is completed, push all your branches to GitHub without any additional commits (do not change 'master' branch name to 'main'). And provide a link in Repo class:
public class Repo {
    public static String REPO_LINK = "https://github.com/username/reposotoryName";
}

Task 1

We are going to set up a simple git branching strategy.

  1. Create an empty git repository with git init command. Also read up about --bare option and bare repositories themselves.

  2. Create a new file with touch README.md command.

  3. To modify the existing file, we will use VIM text editor. This editor is widely used for rebasing and other git activities so every developer should get used to it. Type vim README.md command to open vim text editor. Press letter i to enter the insert mode. Type in “Hello World” or something you like. Press escape on the keyboard to exit from insert mode and go to the command mode. In the command mode press shift + ZZ to save current file and exit.
    In the bottom left corner of the above screenshot you can see that currently the editor is in insert mode.

  4. To check the progress type git status command. You should see that readme file is untracked now. You should check for a status as often as it is possible. If you always read status carefully enough, you will never end up in strange unpredictable situations.

  5. To track readme you can use git add . command. This will track and stage all the files in the current directory. Now you should see that your readme file is green which means it is also staged. Take a moment to read about tracking and staging and how they are different with each other.

  6. It is time to commit changes. To create commit use git commit -m “created readme” command which will create commit with corresponding message. Your working tree should be clean now.

  7. We are going to create new branch called develop, which will contain all the functionality you are currently working on. To create a new branch, execute git checkout -b develop command. This will create new branch from the current (master). Create git_task branch from develop and git_0 branch from git_task.
    You can use git show-branch command to view all branches at once. The branch you are currently working with is marked with * symbol.

  8. Now we will add some changes to README.md, with vim, check status, stage changes with git add README.md command, commit changes, check the result (status) then checkout to git_task branch (with git checkout git_task command) and merge changes from git_0 branch with git merge git_0 --no-ff command. Take some time to read about merging and no-ff option. This is usually the default pull request merging behavior so you will work with it on you daily basis.
    Also note that you can view staged changes with git diff --cached command. For example tere we can see that new line “changes from git_0” was added to the file.

    Also note that you can view your latest changes with gitk command (which should invoke gitk tool). If this command does nothing or returns error, this usually means that you do not have gitk installed by default (e.g. working from mac). This tool is not necessary and is the matter of choice.

    You can also use git show-branch command (or even git log command) to quickly look through your recent work.

  9. Now repeat merging process to get your commit to master (through develop of course) branch. When you finish, you can use something this git log --all --graph --decorate --oneline --simplify-by-decoration or this git log --graph --oneline –all command. These commands were found on the stackoverflow as an answer to a question of viewing git history as a tree. This is not the best solution but it is more than enough for our needs. You output should look similar to this:
    From this picture you can see that the HEAD is currently looking at the master’s latest commit. We have created 5 commits: 2 with actual edits and 3 merge commits.

  10. Synchronize all created branches with a remote repository.

The idea here is simple. You should always develop you features in custom branches made from develop branch. When you feature is ready it goes to the develop branch (usually with pull request instead of merge). When the release time has come, all the merging to the develop branch should stop (or you may create custom *** pre_release*** branches with locked functionality). develop branch (or pre_release) should be tested and stabilized. As soon as the branch is stable, it goes to the master branch (or you may have different release branches and even don’t have a master, or don’t use master branch at all). This procedure might differ from project to project and always should be designed with the respect to the concrete project and goals. All this helps to keep the repository clean and always have some stable versions for the production.

Task 2

Part 1

We are going to practice some skills obtained in the previous task. If you come across something you still don’t know, please use links provided in the descriptions, internet search, other students as sources of knowledge and help. For this task you will create two separate branches git_1 and git_2 in your remote repository and local tracked branches with same names. Both these branches should be made of the git_task branch.

  1. git_1: Add and commit firstFile.txt file with 10 lines with message 'Added firstFile.txt to git_1'.
  2. git_1: Add and commit secondFile.txt file with 10 lines with message 'Added secondFile.txt to git_1'.
  3. Merge branch git_1 to git_2 with default message 'Merge branch 'git_1' into git_2'
  4. git_2: Update and commit any two lines in secondFile.txt with message 'Changed 2 lines in secondFile.txt in git_2'
  5. git_1: Update and commit the same 2 lines with the different info in secondFile.txt with message 'Changed 2 lines in secondFile.txt in git_1'.
  6. Merge branch git_2 to git_1, resolve conflict. Left all (4) modified lines. Commit with message 'Fixed merge conflict'
  7. git_1: Update and commit 1.txt file, modify two lines. Message - 'Changed 2 lines in firstFile.txt in git_1'
  8. git_1: Update and commit 1.txt file, modify another two lines: 'Changed another 2 lines in firstFile.txt in git_1'
  9. Transfer changes of commit from Step 7 only to git_2, using format patch. Commit: 'Apply patch'
  10. Transfer changes of commit from Step 8 only to git_2, using cherrypick command.
  11. git_2: Concatenate the last two commits ('Apply patch' and 'Changed another 2 lines in firstFile.txt in git_1') using reset + commit commands.
  12. git_2: Change author and message of the last commit and add non-empty thirdFile.txt file to it. Message - 'Concatenated two commits', author - Ivan Ivanovich <Ivan_Ivanovich>
  13. git_2: Create a new commit that reverts changes of the last one. Leave the default message - 'Revert "Concatenated two commits"'
  14. git_2: Create and commit thirdFile.txt file. Message - 'Added thirdFile.txt to git_2'
  15. git_2: Run command that removes all changes of the last two commits. You will end up with commit - 'Concatenated two commits'
  16. Synchronize git_1 and git_2 with a remote repository.

Part 2

For this task you should learn how to use interactive rebase, thus other ways of achieving the same are prohibited.

  1. Create git_3 branch from git_task. Checkout to git_3.
  2. Add new empty file doubtingFile.txt and commit it with message - 'Added doubtingFile.txt to git_3'.
  3. Add a line to a file and commit changes. Do it 5 times. You should end up with 5 lines in a file and 6 commits: 1 for creating an empty file and 5 for adding a line. Messages are the following: 'Added line 1', 'Added line 2' ...
  4. Check your log and copy it somewhere.
  5. Launch interactive rebase for 5 last commits, squash all the latest commits into the first one. Reword first commit. You should end up with 2 commits: 1 for creating an empty file (Added doubtingFile.txt to git_3) and second for adding 5 lines. Second commit should have a new commit message - 'Rebased commits'
  6. Check your log and compare it with the previous one. Look at the hash, date, commit message. Explain what changed and why.
  7. Check your reflog. Explain what you can see and why.
  8. Synchronize git_3 with a remote repository.

Extra Materials

  1. Useful git commands
  2. Vim commands cheat sheet
  3. Basic Vim commands - For getting started
  4. vim adventures
  5. Introduction to Git - Branching and Merging

stage2-module1-git's People

Contributors

symbatdeveloper avatar lizaveta-epm avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.