diff --git a/css/style.css b/css/style.css index 724201e..3f16587 100644 --- a/css/style.css +++ b/css/style.css @@ -80,10 +80,10 @@ a, a:visited { ul { list-style: none; - text-align: left; margin-left: 0; padding-left: 1em; text-indent: -1em; + text-shadow: 0 2px 1px #fff; } ul li:before { @@ -96,24 +96,38 @@ ul li:before { /** coding block */ blockquote { - color: white; text-align: left; margin: 10px auto; background: #131420; border-bottom: 2px solid #30334F; border-right: 2px solid #30334F; - border-radius: 7px; - padding: 5px 30px; - font-size: 0.8em; + border-radius: 10px; + padding: 5px 20px; + } code { font-style: normal; padding-left: 5px; + border-radius: 10px; + color: white; + padding: 5px 15px; + font-family: menlo, monospace; + background: #131420; + text-shadow: none; + font-size: 0.8em; } /*---------------------------------------- Images */ +div#git-repo { + background: url("../img/git-repo.png") no-repeat scroll center center transparent; + height: 275px; + width: 257px; + position: relative; + z-index: 99; +} + div#init-img { background: url("../img/init.png") no-repeat scroll center center transparent; height: 122px; @@ -171,6 +185,10 @@ div#violet-line-img { margin-left: 30px; } +/*.col-2:after { + clear: both; +}*/ + #main { margin: 0 auto; position: relative; @@ -211,9 +229,9 @@ div#violet-line-img { opacity: .8; } - #title { - margin: 80px auto 0; + margin: auto; + padding-top: 40px; width: 1150px; position: relative; z-index: 99; @@ -243,6 +261,11 @@ div#violet-line-img { width: 100%; } +#head-img { + position: relative; + top: 200px; +} + #download { position: absolute; top: 380px; @@ -282,6 +305,8 @@ div#violet-line-img { font-style: italic; } + +#disqus_thread { width: 800px; text-align: left; margin-left: auto; margin-right: auto; } /*---------------------------------------- Banner */ #banner { height: 149px; diff --git a/img/download.png b/img/download.png new file mode 100644 index 0000000..46dff5c Binary files /dev/null and b/img/download.png differ diff --git a/img/git-flow.png b/img/git-flow.png new file mode 100644 index 0000000..37c983d Binary files /dev/null and b/img/git-flow.png differ diff --git a/index.html b/index.html index 8a96eb9..8c6ce75 100644 --- a/index.html +++ b/index.html @@ -1,5 +1,5 @@ - + @@ -59,159 +59,304 @@ as pdf

--> + git flow -
-
-

About

+
+

About

-

- git-flow are a set of git extensions to provide high-level repository operations for Vincent - Driessen's branching model. - more -

-

★ ★ ★

+

+ git-flow are a set of git extensions to provide high-level repository operations for Vincent + Driessen's branching model. + more +

+

★ ★ ★

-

This cheatsheet shows the basic usage and effect of git-flow operations

- -

★ ★ ★

-
- -
-

Basic tips

-
    -
  • git flow provides excellent command line help and output. Read it carefully to see what's happening...
  • -
- -

★ ★ ★

-
- -
-

Initialize

- -
-

git flow init

- -

Start using git-flow by initializing it inside a git repository

-
- - git flow init - -
-

- You'll have to answer a few questions regarding the naming conventions for your branches.
- I strongly recommend using the default values. -

- -
-
-
-
-
-
- -
-

Features

- -
-

Start a new feature

- -

- Development of new features starting from the develop branch. -

- -

Start developing a new feature with

-
- - git-flow feature start MYFEATURE - -
-
-
-
-
-
-
- -
-
-

Finish up a feature

- -

- Finish the development of a feature. - This action performs the following -

-
    -
  • Merged MYFEATURE into develop
  • -
  • Removes the feature branch
  • -
  • Switches back to develop branch
  • -
- -
- - git-flow feature finish MYFEATURE - -
-
-
-
-
-
- -
-
-

Publish a feature

- -

- Publish a feature to the remote server so it can be used by other users. -

- -
- - git-flow feature publish MYFEATURE - -
-
-
-
-
-
- -
-
-

Getting a published feature

- -

- Getting a published feature from the remote server and tracking remote changes. -

- -
- - git-flow feature pull MYFEATURE - -
-
-
-
-
-
- - -
-

git-flow release

-
-
-

git-flow hotfix

-
+

This cheatsheet shows the basic usage and effect of git-flow operations

+

★ ★ ★

- + +comments powered by Disqus