id: source-repository title: Source Repository

This project uses Git to manage its source code. Instructions on Git use can be found at http://git-scm.com/documentation .

Web Access

The following is a link to the online source repository.

Contributors

Contributors are encouraged to rebase their commits onto the latest master before sending the pull requests to make the git history clean. The following git instructors should be executed after committing the current work:

git checkout master
git pull <apache/singa upstream> master:master
git checkout <new feature branch>
git rebase master

Committers

  • To connect your Apache account with your Github account, Please follow the instructions on: https://gitbox.apache.org/setup/. After that you can directly merge PRs using GitHub’s UI.

To merge pull request https://github.com/apache/singa/pull/xxx, the following instructions should be executed,

git clone https://github.com/apache/singa.git
git remote add asf https://gitbox.apache.org/repos/asf/singa.git
# optional
git pull asf master:master
git fetch origin pull/xxx/head:prxxx
git merge prxxx
git push asf master:master
git remote set-url origin git@github.com/apache/singa.git