DEV Community

Cover image for Day 3 of documentating my learning journey
James Kabuga
James Kabuga

Posted on

Day 3 of documentating my learning journey

Today I learnt

1.Github issues and Github projects.

On what i learnt.

Github issues are like to do items.They of it like a sticky note that comraind short to do things. Example:

  1. Bugs to fix 2.New features to add to ur project 3.Questions.

When creating an issue you ho to your profile and create one. Yiu give it a title and a description and assign someone.

When making commits one can reference the issue.

git commit -m (fixes #1)

The command above tells to fix issues # 1 amd when you publish it it automatically closes.

The #1 you check of that's what it is as we can also have #2 , #3 and so on.

*Github project boards
*

They help to organize tasks visually.
It has multiple columns:

  1. To Do
  2. In progress
  3. Done.

We add our issue in the To Do column and when we publish it automatically ticks as done.

Challenges I faced.

None everything went along smoothly.

Resources I used.

I used a public github repositories bu Bonaventure Ogeto which has day to day activities.

What I'm learning Next

Tomorrow is the last day anf I'll be doing a project.

Top comments (0)