Anyone interested in UI Agent is welcomed to contribute to this repo:
-
You can add the classical or latest publications / tutorials directly to
README.md
andyour_create.md
. -
You are welcomed to update anything helpful.
In general, we follow the "fork-and-pull" Git workflow.
-
Fork this repo on your personal GitHub.
-
Clone this repo to your own machine.
git clone https://github.com/<your_username>/awesome-ui-agent.git
-
Make necessary changes and commit those changes.
-
If you go to this project directory and execute the command
git status
, you'll see there are changes. -
Add those changes to the branch using the
git add
command:git add <your_contributor_files>
-
Now commit those changes using the
git commit
command:git commit -m "add(<your_name>): commit message"
- There are some standards of commit message.
Template:
add/feature/polish(committer_name or project_name): commit messageFor example:
add(jrn): add one paper about UI-Agent
-
Push your work back up to your fork.
git push origin <your_branch_name>
-
Submit a Pull request so that we can review your changes.
-
If you go to your repository on GitHub, you'll see a
Contribute
button. Click on that button. Then clickOpen pull request
andCreate pull request
buttons in turn. -
Soon We will be merging all your changes into the main branch of this repo. You will get a notification email once the changes have been merged.