-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f77bcaf
commit af4583a
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
### How to Commit Git Changes to Docs Repo | ||
|
||
1. `cd` into local docs folder | ||
2. `git pull` to update local with the latest changes on GitHub | ||
3. `git branch` should yield v0.11 in your terminal | ||
4. If you’re not on the right branch, `git checkout v0.11` | ||
5. Make changes to titles/descriptions and save the files | ||
6. `git add .` | ||
7. `git status` to show the files that you’ve changed | ||
8. `git commit -m "message"` to describe the changes you’ve made | ||
9. `git push` to take your local changes and push them up to github | ||
|
||
**Tip:** To open the folder you're in within your terminak in VS Code with the `code.`, go into VS Code, run `SHIFT + COMMAND + P` and then type in `SHELL COMMAND: Install 'code' command in Path` |