Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

In our day to days coding activities we git use heavily , so it is essential to understand and use git properly. You can use sourcetree or can use git CLI.

There are many various commands you can use, mastering Git takes time. But some commands are used more frequently (some daily). I will explain some of them

...

  1. switch to the develop branch:

    Code Block
    git checkout develop
  2. update your local develop branch

    Code Block
    git fetch
  3. merge your feature branch into develop:

    Code Block
    git merge <branch-name>

Those are most - used git commands that we use are utilizing frequently in our daily programming. 

...