Home > Mobile >  I am new to GitHub
I am new to GitHub

Time:11-05

I am making a github for the first time and I want to know if I am doing it correctly. I want to add a few projects but I have one for now. Here is the link. https://github.com/colemandm/Python-Project

Im relatively new to git

CodePudding user response:

Your Git Project Looks fine to me.

CodePudding user response:

From what I can tell, you are doing everything correctly! You have created a repository and added a few files to it. If you want to add more projects, simply add more files to your repository.

Good luck!

CodePudding user response:

Project looks good. You can continue adding more of your projects. Naming them appropriately will be handy in the longer run.

CodePudding user response:

Welcome to Github!

You're doing a great job getting started. Make sure to give detailed explanations of changes made for each commit. Commit OFTEN, you will thank yourself later.

Your next steps are to learn how to commit changes made to your code (Updates the git repository on your local system), then push the commit (send the update to GitHub site).

Once you get the hang of that workflow, you should learn how to backtrack to a previous version of your code, make new branches, make pull requests, and merge branches.

Best of luck to you :)

  • Related