Getting Angband from Github and compiling it
Collapse
This is a sticky topic.
X
X
-
Your memory is correct - trac integrates very well with svn, and the browsing was cool. We *could* set up trac to browse the git repo online, but it's crushingly slow - trac and git do not like each other much. So as d_m says, you're better off browsing the commits at github itself. Just go to the official repo (link in d_m's reply) and click the Commits button.Leave a comment:
-
-
Depends on what you mean. You can do things like "git log" and just scroll around to read it, or you can do "git log | grep 'hello world'" to search for 'hello world'. You can also do "git grep" if you want to find a particular piece of sourcecode (or something) that is no longer there.Leave a comment:
-
git checkout FILE will revert FILE to its current state in HEAD. This will be the same as the official state as long as you aren't committing to the repo yourself.Leave a comment:
-
2. Add the official repo as a remote with "git remote add official http://github.com/angband/angband".
3. Update your local tracking of the official repo with "git fetch official".
4. Merge the latest official changes into your local repo with "git merge official/master".
5. Push those changes up to your github repo with "git push origin master".
This assumes you have not strayed from your master branch in your local repo during this whole exercise.Leave a comment:
-
-
-
Leave a comment:
-
-
It couldn't locate that certain header file, so I yanked that section out of the code, and it compiles.
direct.h <-- file not found... so, no directory creation for me.
-SBux-Leave a comment:
-
To build for Windows, you're supposed to cd into src and then run "make -f Makefile.win"... is that what you're doing?Leave a comment:
Leave a comment: