Right,
Is there a way to easily change the files, but also revert them without having to handle each file seperatly. In other words, is there such a thing as a program that tracks all these changes, allows you to save, change, or load several files at once?
For example, I am editing combat.lua, talents.lua, etc etc. Something does not work, then I need to revert those changes. If I could do that with one click of the mouse... that would help my workflow significantly.
thanks
question: how to change and revert files easily
Moderator: Moderator
-
- Sher'Tul
- Posts: 1022
- Joined: Fri May 21, 2010 8:16 pm
- Location: Inside the minds of all
- Contact:
Re: question: how to change and revert files easily
It's tedious, but it's best to work on only 1 file at a time, save, check/test - then continue.
Final Master's Character Guides
Final Master's Guide to the Arena
Edge: Final Master... official Tome 4 (thread) necromancer.
Zonk: I'd rather be sick than on fire! :D
Final Master's Guide to the Arena
Edge: Final Master... official Tome 4 (thread) necromancer.
Zonk: I'd rather be sick than on fire! :D
Re: question: how to change and revert files easily
There are version-control program, such as SVN (used for the development repository of ToME) or git (which I personally use). I'm not sure for SVN, but with git, you can revert all of your non-committed changes with a single command (git stash).
Re: question: how to change and revert files easily
SVN lets you revert as well.
Re: question: how to change and revert files easily
SVN permanently moves you back to the clean version, whereas "git stash" lets you store the modified version, move back to the clean version, and then with "git stash apply" move back to the modified version again. Depends on what you want...edge2054 wrote:SVN lets you revert as well.
<DarkGod> lets say it's intended
Re: question: how to change and revert files easily
Tortoise SVN at least saves your branches when you revert. So if I commit something, revert, and then decide I want to go back to that branch later I can.
I think Marv is on Linux though so Tortoise probably isn't an option and even if it is there's probably something less temperamental he can use.
I think Marv is on Linux though so Tortoise probably isn't an option and even if it is there's probably something less temperamental he can use.