zAppBuild is intended to be maintained as a stand alone Git repository by the release engineering team of a corporation or organization. It is intended to be cloned to a single location on USS to be used to build all of your z/OS applications.
- Clone the DBB community repository to either a Linux or Windows machine.
- Copy the
Build/zAppBuild
folder to another location on the machine outside of the cloneddbb
local repository. - Change directory to the new zAppBuild directory.
- Type
git init
to create the local repository. - Type
git add *
to add all files to the local repository. - Type
git commit -m "<message>"
to do an initial commit to the local repositry.
- Create the remote repository called "zAppBuild" using the appropriate method for the remote Git server. Examples: GitHub, GitLab, Bitbucket.
- Change directory to the new zAppBuild directory on the local machine.
- Type
git remote add origin <remoteGitServerURL>/zAppBuild.git
- Type
git push -u origin master
The zAppBuild remote repository is now ready to clone to USS.