Git:速查表
原文英文,约200词,阅读约需1分钟。发表于: 。First Steps : Start and Configure A Git Command Description git init Creates a new Git repository in the current folder. git config --global -l Sets or views Git settings, like username...
本文介绍了Git的基本命令和配置。使用`git init`创建仓库,`git config`设置用户名和邮箱。常用命令有`git status`查看状态,`git add`暂存,`git commit`提交,`git diff`查看差异,`git log`查看记录。`.gitconfig`存储配置,`.gitignore`指定忽略文件。