Git 常见流程# clone远端仓库到本地
$ git clone http://github.com/jquery/jquery.git
# 进入工作区(本地的仓库目录,称为工作区)
$ cd jquery
$ touch test
#
2020-06-19