Skip to content

reposankar/patronus

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Git/GitHub Practice

This repo has various branches and commit combinations to demonstrate wide variety of Git and GitHub functionaries.

Essentials

  • Git Bash 2.3 or above

Demo Code

public class Cat {
    private String name;
    private int age;
    private float weight;

    public Cat(String name, int age, float weight) {
        this.name = name;
        this.age = age;
        this.weight = weight;
    }

    public getName() {
        return name;
    }

    public getAge() {
        return age;
    }

    pubilc getWeight() {
        return weight;
    }

}

About

This is a test repo

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published