September 14, 20178 yr You have a couple different options you can use git command line or use a client such as GitHub Desktop (Free) or GitKraken (GitKraken is free if you have the GitHub Student Pack). If you are new to git I recommend using a client as it is easier to learn. Login to Github Go to the location of your project Open up the folder in Terminal or Command Prompt or Git client Initialize using the command bellow or the client the repository this will create a new repository on Github git init Commit the files and Push them to git using the client or with the commands below. git commit -a git push origin your_branch_name I recommend you add a git ignore so you don't push some of the project files that eclipse creates as these should be regenerated for each user. also never directly push to master as only code you know works should be there so create a new branch. Edited September 14, 20178 yr by MDW01
September 15, 20178 yr I have a tutorial on setting up sourcetree and github here: http://jabelarminecraft.blogspot.com/p/minecraft-forge-publishing-to-github.html Check out my tutorials here: http://jabelarminecraft.blogspot.com/
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.