jbon / Github-Social-Network-Analysis

Social Network Analisys of GitHub
1 stars 2 forks source link

understanding get_branches #6

Open kerstinopen opened 7 years ago

kerstinopen commented 7 years ago

get_branches doesn`t show all branches --> why?

kerstinopen commented 7 years ago
    for i in repository.get_branches():
        print(i.name)
        chosenName = input("type the branch name: ")
    # auf dem Network Graph sind 3 Branches zu sehen,
    # genannt werden 2 Branches,
    # angezeigt wird aber nur einer?!
        print(i.commit.sha)

        for k in i.commit.parents:
            print(k.sha)
    # auch die ausgeworfenen commit infos beziehen sich nur auf den master branch
jbon commented 7 years ago

@kerstinopen : what is the status of this issue?