Giter VIP home page Giter VIP logo

swpp202201-assn1's Introduction

SWPP, Assignment 1: Rebasing & Merging Branches

What you should do is to:

  1. Clone this repo into your computer

  2. Make a new commit that replaces SWPP from hello.cpp with your github id, so it prints:

make
./hello
Hello, my name is <your Github ID>

The commit message should be "Update hello.cpp".

  1. This repo has three branches: master, bugfix, usemap. Checkout the existing bugfix branch using git checkout command. Then, rebase it onto master using git rebase command. See following diagram.
*----------* master
 \
  \
   --------* bugfix

==> (after rebase)

*----------* master
            \
             \
              --------* bugfix
  1. Checkout master and merge bugfix into master using git merge command. Thanks to the rebase done before, there will be no merge commit created.

  2. On top of that, merge the existing usemap branch again. This causes a merge conflict; please fix it carefully. (When you commit the fix, please do not edit the commit message which will be e.g., Merge branch 'usemap'.)

NOTE: You should carefully see why it causes merge conflict. To do this, you need to understand what usemap branch did.

  1. Check that make; ./check.sh works successfully. :)

After this, git log --oneline at master branch should show the commits including bugfix/usemap commits, "Update hello.cpp" commit, and a merge commit.

git log --oneline --no-merges should hide the merge commits.

  1. ./package.sh will create an archive submit.tar.gz. Submit this archive to eTL.

swpp202201-assn1's People

Contributors

sunghwanl 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.