Skip to content

Instantly share code, notes, and snippets.

View juliomsousa's full-sized avatar

Julio Martins de Sousa juliomsousa

View GitHub Profile

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

package com.example.backgroundapp;
import android.content.Intent;
import android.os.Bundle;
import android.os.Environment;
import android.util.Log;
import android.view.View;
import androidx.appcompat.app.AppCompatActivity;
import java.io.File;
import java.util.Calendar;