Including UniStudio & UniRobot
Comming Soon…
计算机HKEY_CLASSES_ROOTAppIDSapROTWr.DLL
, and find the numerical data named AppID
on the right, for example, the current one is: {xxx-xx-xxx}
计算机HKEY_CLASSES_ROOTWOW6432NodeAppID{xxx-xx-xxx}
(the braces at the end are the values obtained in the previous step), create a new string value on the right, and name it DllSurrogate
. Numerical data is emptyComming Soon…
In team development, it is very important to follow a reasonable and clear Git usage process.
Otherwise, everyone submits a bunch of messy commits, and the project will quickly become difficult to coordinate and maintain
push
operations in this branchpush
this branch, and can only merge personal branches into this branch through Pull Request .feature/package-manager
branch to be responsible for the development of the package manager moduledevelop
branch; after that, the branch will be deleteddevelop
branch** (only through the Pull Request method)** and then deletedpush
develop
branch frequently.master
or develop
branchesfeature/xxx
branches, once the repair work is completed, they are merged into master
or develop
branch (only through the Pull Request method) and then deleted # 开发前克隆 develop 分支到本地
git clone -b develop https://github.com/yusiyang/UniRPA.git
First of all, every time you develop a new function, you should create a new branch
# 获取 develop 分支最新代码
git checkout develop
git pull
# 新建一个特性分支
git branch feature/xxx
# 切换到该特性分支,进行开发
git checkout feature/xxx
After the branch is modified, you can submit it
# 提交代码
git add .
git commit
# 开发过程中,将本地仓库开发中的特性分支 push 到远程仓库(可选的)
git push -u origin feature/xxx
The -u
parameter of git push
means to associate the remote repository origin/feature/xxx
with the local repository feature/xxx
. The next time you execute the push
command, you can omit the subsequent remote repository name and branch name, and directly enter git push
During the development process of branches, you must keep in synchronization with develop
backbone.
# 获取 develop 分支最新代码
git checkout develop
git pull
# 切换回当前开发的特性分支
git checkout feature/xxx
# 合并 develop 分支到当前分支
git merge develop
Complete all development tasks of the current feature branch, perform the last synchronization with the develop backbone , and submit it to the remote repository, you can issue a Pull Request to the develop branch , and then request the administrator to perform Code Review to confirm that it can be merged into develop
branch
# 最后进行一次步骤三的同步工作
# 提交到远程仓库
git checkout feature/xxx
git push origin feature/xxx
# 在 GitHub 管理界面创建 Pull Request,等待管理员进行 Code Review
After all the development tasks of a feature branch are completed, it should be deleted.
# 首先,切换回 develop 分支
git checkout develop
# 先删除远程特性分支
git push origin -d feature/xxx
# 再删除本地特性分支
git branch -d feature/xxx