Changes between Version 3 and Version 4 of GitCautions


Ignore:
Timestamp:
Dec 30, 2013, 2:15:48 PM (9 years ago)
Author:
Beman Dawes
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GitCautions

    v3 v4  
    77== Things to avoid ==
    88
    9 === Commands and options that overwrite data ===
     9=== Commands and options that overwrite data without warning ===
    1010
    1111* {{{git reset --hard}}}
    1212* The {{{-f}}} or {{{--force}}} option for any command.
     13* The {{{git checkout}}} form that takes path arguments.
    1314
    1415Examples:
     
    1718git checkout -f HEAD
    1819git submodule update --force
     20git checkout config.hpp
     21git update .
    1922}}}
    2023
    21 Once experience and expertise develops, these commands and options can be used (very) sparingly, but they are sharp, dangerous tools.
     24Once experience and expertise develops, these commands and options can be used (very) sparingly, but they are sharp and very dangerous tools.
    2225
    2326== Things to embrace ==
     
    3336== Acknowledgements ==
    3437
    35 Edward Diener, Michael Cox contributed suggestions and comments in Boost mailing list discussions.
     38Beman Dawes created and maintains this page. Edward Diener, Michael Cox, and Phil Richards contributed cautions.
    3639
    3740-----