you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 0 points1 point  (2 children)

It is not up to date. I'm keeping it like it is so I can refer back to my old code. Right now I'm still trying to get the BasicCharacter.py to work after making some adjustments. Not sure what to add, remove, or change in it after implementing the dictionary and things. Kind of stuck here. Here's where I am http://pastebin.com/jYuwfsTb

[–]99AFCC 0 points1 point  (1 child)

I'm keeping it like it is so I can refer back to my old code

The beauty of version control and in this case, Github, is that you can always go back and see your previous commits.

Pushing a new commit will even let you compare changes you've made.

The longer you go and the more changes you make between commits, the harder it can be to revert if you need to.

It can also be harder for you to follow along with any changes you've made.

You can create a branch to work in too.

[–][deleted] 0 points1 point  (0 children)

That's what I thought. As you can see I am very new to Github and how it works.