| 84 | return None |
| 85 | |
| 86 | def help_info(): |
| 87 | print( |
| 88 | "**********************************************************************************\n" |
| 89 | "* Help infomation:\n" |
| 90 | "* Git tool install step.\n" |
| 91 | "* If your system is linux, you can use command below to install git.\n" |
| 92 | "* $ sudo yum install git\n" |
| 93 | "* $ sudo apt-get install git\n" |
| 94 | "* If your system is windows, you should download git software(msysGit).\n" |
| 95 | "* Download path: http://git-scm.com/download/win\n" |
| 96 | "* After you install it, be sure to add the git command execution PATH \n" |
| 97 | "* to your system PATH.\n" |
| 98 | "* Usually, git command PATH is $YOUR_INSTALL_DIR\\Git\\bin\n" |
| 99 | "* If your system is OSX, please download git and install it.\n" |
| 100 | "* Download path: http://git-scm.com/download/mac\n" |
| 101 | "**********************************************************************************\n" |
| 102 | ) |
| 103 | |
| 104 | |
| 105 | def touch_env(use_gitee=False): |