zoukankan      html  css  js  c++  java
  • Personal experience on source code management(Git)

    Understand Distributed Version Control System(VCS)/Software Configuration Management(SCM)

    1. fetch the updates from remote before you start coding or pushing your changes
    2. waiting until the command process(eg:check-out) finished itself in case of breaking the file system on the working directory
    3. double confirm on the merge conflict you have made

    Check in your source code correctly and elegantly

    1. diff your changes before checking in your source code
    2. check in your updates based on the feature you implemented or bug you fixed
    3. commit your code with clear message(https://chris.beams.io/posts/git-commit/)
    4. keep an eye on the output message from git command
    5. commit with --amend option or other best practices if needed
  • 相关阅读:
    06
    05
    继承
    0713作业
    0712作业
    0711作业
    福彩双色球作业
    0709作业
    选择语句+循环语句作业
    0706作业
  • 原文地址:https://www.cnblogs.com/makesense/p/12305930.html
Copyright © 2011-2022 走看看