Skip to content

Commit

Permalink
fix: typos
Browse files Browse the repository at this point in the history
  • Loading branch information
MimmyJau committed Aug 29, 2023
1 parent fd05e3f commit 0a13f63
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/pages/posts/debugging-workflow-python.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,10 +126,11 @@ As a vim user, I've found `tpope/vim-fugitive` to be **SUPER** useful for naviga

You can also just run `:G` or `:vert bo G` to open up the "homepage" of fugitive. From there you can selectively stage and commit code by highlighting text and pressing `=`.

A few other helpful git commands include:
A few other helpful git commands include (all of these can be done in fugitive replacing `git` with `:G`):
- `git stash` and `git stash pop` for saving current changes before jumping around,
- `git blame` for finding a commit that added a line of code (good for seeing context like the other changes and the commit messages),
- `git log --graph --oneline` or `git log --graph --oneline --all` which I've remapped to `git lol` and `git lola` respectively.
- `git log --graph --oneline` or `git log --graph --oneline --all` which I've remapped to `git lol` and `git lola` respectively,
- `git rebase -i` for doing all kinds of things inside a nice UI.

### documentation

Expand Down

0 comments on commit 0a13f63

Please sign in to comment.