Source Code Access & Setup
Source Code - Github¶
Accessing the source code¶
- Clone the root repository : this root repo is used to manage all submodules and projects. You can use following commands to clone the root repository.
mkdir ac-dev-stack
git clone git@github.com:appcircleio/ac-root.git ac-dev-stack
cd ac-dev-stack
git switch develop
Use following commands to; - [ ] Init and update (get latest version) of sub modules. - [ ] Switch to develop branch for all submodules.
git submodule init
git submodule update
git submodule foreach git switch develop
- You can use following command to pull all submodules using the following command. (Can be used to pull latest from of all projects for future)
git submodule foreach git pull
Generally, we don’t modify root-project. We use sub repositories connected as sub-module. Please do not modify root project. Just open AppCircle.sln in appcircle.io folder and do not make changes in the parent folders. Contact team lead for further actions.