-
Notifications
You must be signed in to change notification settings - Fork 557
Build Setup GIT
Arthur Benemann edited this page May 26, 2014
·
8 revisions
Download Git: Git download. And install it.
Now open Git GUI. Select Git clone, and type the following address: https://github.com/DroidPlanner/droidplanner.git
On the target directory type a folder on your PC (type in a new folder, that the git will generate).
Just run the following commands to clone the DroidPlanner project from the main repository.
# Install GIT
sudo apt-get install git-gui gitk
sudo apt-get update
# Download DroidPlanner project
git clone https://github.com/DroidPlanner/droidplanner.git
Fork the DroidPlanner project:
Then, in your terminal app:
$ git clone git@github.com:<YOUR_GITHUB_USERNAME>/droidplanner.git droidplanner
$ cd droidplanner
Occasionally you'll want to update your local fork with the upstream changes. To do this you'll need to add the main repository as a remote, then fetch and merge the changes into your local fork.
# From your local droidplanner folder (You only need to do this the first time):
$ git remote add upstream https://github.com/DroidPlanner/droidplanner.git
Then, each time you want to update your fork:
$ git fetch upstream
$ git merge upstream/master
If you want to learn more about Github workflow with forks and whatnot, you can read the Github docs.