摘要:
Command line instructions Git global setup git config --global user.name "用户名" git config --global user.email "git账号" Create a new repository git clon 阅读全文
摘要:
创建 在主目录下创建 .gitignore 文件 语法规范 1、 #:开头的行表示注释行2、:用来匹配零个或多个字符3、.a表示忽略.a文件;.[oa]表示忽略所有以.a和.o结尾的文件,忽略所有以结尾的文件;[]用来匹配括号内的任一字符,如[abc],也可以在括号内加连接符,如[0-9]匹配0至9 阅读全文