After checking Upload my project to github I still have no idea how to get a project uploaded to my Git Hub repository.
I'm new to GitHub and I have no idea what to do. I created a repository but i want to upload my project to it.
I've looked on the repository page for an upload button of some kind but I haven't seen anything of the sort.
I've looked at the links provided so far but I'm still getting no where. They mention command line, is that Windows command line or Git Bash? Because I can't get either to do anything.
I also tried using Git GUI but when I select the folder I want it says that it's not a Git repository...does it need to be zipped up? I tried adding the .gitconfig
file in the folder but it doesn't make a difference.
Since I wrote this answer, github released a native windows client which makes all the below steps redundant.
You can also use sourcetree to get both git and mercurial setup on Windows.
Here is how you would do it in Windows:
git init
. This will say "Initialized empty git repository in ....git" (...
is the path).git add filename
. If you want to add all your files, you can do git add .
git commit -m "adding files"
. -m
lets you add the commit message in line.So far, the above steps is what you would do even if you were not using github. They are the normal steps to start a git repository. Remember that git is distributed (decentralized), means you don't need to have a "central server" (or even a network connection), to use git.
Now you want to push the changes to your git repository hosted with github. To you this by telling git to add a remote location, and you do that with this command:
git remote add origin https://github.com/yourusername/your-repo-name.git
*Note: your-repo-name
should be created in GitHub before you do a git remote add origin ...
Once you have done that, git now knows about your remote repository. You can then tell it to push (which is "upload") your commited files:
git push -u origin master