Pre-requisites
- Get SuperOfficeDocs running locally: To edit an article, you need to get SuperOfficeDocs running locally on your machine.
- Markdown: Docs uses markdown syntax to format content. Markdown is simple to pick up on. Familiarize yourself with the Markdown guide before making updates to content.
How to edit and preview content
-
Fork the SuperOfficeDocs repo into your own repo.
-
Set your remote repositories. We will use the terms upstream and origin. When you originally cloned the repo (in the pre-requisites), the
originwas added for you implicitly. Typegit remote add upstream https://github.com/SuperOfficeDocs/docsto add the main SuperOffice Docs repo as your upstream repo.TypeRemotes can be named anything you like. Find out your remotes by typinggit remote -v.git remote -vto list your remotes. If you are new to Git, you should have 2 remotes:originis your forked repoupstreamis the main SuperOfficeDocs repo
-
Create an issue on GitHub that corresponds with the edit you’re working on by clicking the New Issue button in the browser. Be sure to include relevant information providing context to the issue in the description or comment section. This helps reviewers understand what you’re working on.
Make note of the issue number that GitHub generates.
-
Create a new branch for your work. Branch names start with the issue number, for ease of tracking.
Example branch name:
107-fix-broken-linkExample Git command to create new branch:git switch -c 107-fix-broken-link - Make your edits.
-
Preview your work locally by running
mint devin your terminal (in VS Code, PowerShell, or similar). This will run SuperOfficeDocs locally on your machine at a URL similar to thislocalhost:3000. Click the link or copy and paste it into your browser.
How to commit and share
-
Use
git statusto review the files you are working on and ensure the proper files are being tracked. -
Use
git add [INSERT FILE NAME]to stage a single file orgit add .to stage all modified files to be committed. -
Use
git commit -m "[INSERT YOUR COMMIT MESSAGE HERE] (#[INSERT ISSUE NUMBER HERE])"to commit your files. The-mstands for message. Replace the placeholders with a brief, relevant summary and your issue number - end the message with the issue ID in parentheses, so GitHub links it automatically. -
Use
git push origin [INSERT A NEW BRANCH NAME HERE]to push your updated files to your repo. Replace the INSERT A NEW BRANCH NAME HERE with the name of your new branch. - Go to your forked GitHub repo on GitHub.com. GitHub should detect the updated code and prompt you to make a pull request.
-
Create a pull request by clicking the Compare and create pull request button. In the description or comments section be sure to include the text “Resolves
#[INSERT ISSUE NUMBER HERE]where your previously created issue number is associated with this pull request.
A preview link normally appears automatically as a bot comment shortly after you open the pull request - except a pull request from a fork does not get one. See Manual (custom) previews to request one instead.