Skip to content

Commit

Permalink
MVP of how to commit to git doc
Browse files Browse the repository at this point in the history
  • Loading branch information
paolaperaza committed Jan 14, 2020
1 parent f77bcaf commit af4583a
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions how-to-commit.md
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`

0 comments on commit af4583a

Please sign in to comment.