Skip to content

Commit

Permalink
removing extra
Browse files Browse the repository at this point in the history
  • Loading branch information
kersten1 committed Jul 31, 2024
1 parent 3716625 commit c047b34
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions src/blocks_notes_markers.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,6 @@ IMPORTANT,bf0000,b58f5b
|===


Testing changing important:



=== Code blocks

AsciiDoc enables code blocks that support syntax highlighting.
Expand Down Expand Up @@ -201,7 +197,7 @@ The suggested solution makes use of:

==== Indicate changes

With apologies for requiring a manual step at this time, indicators for the changed lines must be inserted:
Indicators for the changed lines must be inserted manually:

[source,adoc]
----
Expand All @@ -227,14 +223,14 @@ For change bars associated with headings, place the change indicator after the h

==== Check for changed lines before a `git commit`

You can double check for all changed lines just before doing a commit, using this pattern:
You can double check for all changed lines before committing by using this pattern:

[source,cmd]
----
git blame <file> | grep -n '^0\{8\} ' | cut -f1 -d:
----

This lists the line numbers of changes within the specified file like the following:
This lists the line numbers of changes within the specified file like the following example:

[source,cmd]
----
Expand Down

0 comments on commit c047b34

Please sign in to comment.