I am pretty new to Git. I have created a repository and added some files to the master branch. After that, each time wanted to work on a particular subproject, i have been doing "create new branch" with a name for example "csv_reader_branch", "datetime_object".
Now i have many branch and would like to push those branches to the master branch. Normally the projects are non overlapping but i would like to be able to compare before merging.
What is the best practice?
PS: also I see "fork" mentionned on many similar question but i am running git locally and cant find any "fork" in the github menus. Am i missing something?
Regards