Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Users/abehenderson/git-work/commits.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const a = 2, b = 8, c = 7
const a = 2, b = 8, c = 5

const sum = a + b + c

console.log(sum)
console.log(sum)
12 changes: 12 additions & 0 deletions Users/abehenderson/git-work/commitshow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
### How To Edit A Document From The Terminal
---

1. Open desired folder using `cd` command
2. Open file using `code` command
3. Once the desired file is open in the editor, on the command line type `nano [filename]`
1. The command `nano` opens the file within the terminal and allows for direct editing from the terminal
4. Edit the file as desired
5. To exit, press the keyboard shortcut `ctrl x`
6. To save changes press `y`
7. To exit the terminal editor, press `return`