gitflow | git |
---|---|
git flow init |
git init |
git commit --allow-empty -m "Initial commit" |
|
git checkout -b develop master |
This file contains hidden or 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
<html> | |
<body> | |
<h1>Our Navigation</h1> | |
<p>I'm writing an example xhtml document to get converted into markdown!</p> | |
<h2>Examples</h2> | |
<h3>Text formatting</h3> | |
<p>Sometimes with longer <em>paragraphs</em><br/>we just want a new line <strong>immediately</strong>.</p> | |
<div>Divs are block elements too, and people don't always put their text in p tags.</div> | |
This file contains hidden or 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
/* Move Find Bar position. Based on: https://pastebin.com/sucmEx7N */ | |
.browserContainer > findbar { | |
/* Position the Find Bar above the page */ | |
order: -1 !important; | |
/* Move Find Bar border from top to bottom */ | |
border-top: none !important; | |
border-bottom: 1px solid hsl(240, 5%, 5%) !important; | |
} |
I needed to download Oracle JDBC jar files for use with my database query tool. Oracle JDBC drivers have been available in the public official Maven repository since September 15, 2019. They extended it to include all supported releases in February, 2020. (link1 [link2] [link3] [link4]).
The versions-maven-plugin
, by default, does not ignore versions ending with qualifier strings when searching for the latest version of an artifact.
For example, versions ending with -alpha.14
, -beta3
, -M-2
, and -RC1
will be considered as valid upgrade candidates.
Suppose your project depends on version 3.2.1
of a certain artifact and then 3.3.0-beta
is released.
The versions-maven-plugin
will, by default, consider that to be a valid upgrade.