-
Notifications
You must be signed in to change notification settings - Fork 49
Create and edit content
Aine Riordan edited this page Aug 21, 2023
·
1 revision
To submit an update:
-
Fetch the latest changes.
----- $ git fetch upstream -----
-
Check out a branch from upstream/main
$ git checkout -b <new-branch> upstream/main
-
Make your edits.
Add or edit files as needed.
-
Stage the changes for each file.
$ git add <file-name>
-
Commit the changes.
----- $ git commit -m "<descriptive-commit-message>" -----
-
Push the changes to your forked repository.
$ git push origin HEAD
-
Open a pull request.
Typically the previous command gives the URL to open a pull request. If not, you can open one from the link:https://github.com/ansible/aap-docs/pulls[Pull requests] tab of the GitHub UI.
After you submit a pull request, it will be reviewed by members of this project.
-
Repository branch structure
-
Forking workflow
-
git cherry-pick
-
List open pull requests