Posted June 14, 201411 yr What is the proper way of setting up a git repo and mirroring it to Github/Bitbucket? I've done git before, but only through NetBeans' automation of the process. http://i1279.photobucket.com/albums/y523/textcraft/Jun%202014%20-%202/a77dd69ddfa9e622422c5e5cd7e377b14d5cdedec1b7a8e19dde68c9e22be6dfbf81219d3893f419da39a3ee5e6b4b0d3255bfef95601890afd8070929aa338b0dfc68d48355_zps0c847cf3.png[/img] I have a reputation for text walls. If you ask me a question I will most likely explain it in the most wordy way possible. -0 characters left
June 14, 201411 yr Initializing a Git repo and setting up a remote branch from the command line is pretty simple: $ git init $ git add . $ git commit -am "first commit" $ git remote add origin https://github.com/user/repo $ git push -u origin master Now, if you're talking about a Forge project specifically, it's a bit more involved, but not too bad either. You could have a look at my repo for an example. I like to make mods, just like you. Here's one worth checking out
June 15, 201411 yr Well, there _is_ the GitHub GUI for Mac/Windows/Linux, but it's pretty limited. Personally, I prefer the command line :P I like to make mods, just like you. Here's one worth checking out
June 15, 201411 yr I use straight up Git. It works fine for me and it super simple. -Mitchellbrine Minecraft can do ANYTHING, it's coded in Java and you got the full power of Java behind you when you code. So nothing is impossible. It may be freaking fucking hard though, but still possible If you create a topic on Modder Support, live by this motto: I don't want your charity, I want your information
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.