Free and Open Source real time strategy game with a new take on micro-management

Difference between revisions of "Git"

From Globulation2

Jump to: navigation, search
(Start filling the page)
 
(Getting a Copy of the Git Repository)
 
Line 11: Line 11:
== Getting a Copy of the Git Repository ==
== Getting a Copy of the Git Repository ==
No matter if you want to contribute with write access or just want to get a read only copy of glob2, you should cd to a directory where you have write permissions and run hg clone:
No matter if you want to contribute with write access or just want to get a read only copy of glob2, you should cd to a directory where you have write permissions and run hg clone:
cd ~/my_hg_repositories
cd ~/my_git_repositories
git clone https://github.com/Globulation2/glob2.git
git clone https://github.com/Globulation2/glob2.git
cd glob2
cd glob2

Latest revision as of 14:54, 15 February 2021

Main User Resources: User Manual | Frequently Asked Questions | Map editor guide | YOG
Game specific arguments: Resources | Buildings | Units | Combat | Flags and special areas | Farming | Graphs | Statistics | Prestige | Fruit and conversion
Building from Sources: Git | Compiling
Migration from Bitbucket: The Git repository replaces the old Mercurial repository that was hosted on Bitbucket before Bitbucket terminated it. This page is being written with instructions to use it.

Browsing the Project Repository

At https://github.com/Globulation2/glob2/ you can browse through the repository.

Tools

git
To really access a git repository you need git. You can get it from your distribution if you are running Linux or from the git homepage. An in depth manual of git you can find here.

Getting a Copy of the Git Repository

No matter if you want to contribute with write access or just want to get a read only copy of glob2, you should cd to a directory where you have write permissions and run hg clone:

cd ~/my_git_repositories
git clone https://github.com/Globulation2/glob2.git
cd glob2
Misc