Git备忘单 每个开发人员必须知道的基本Git命令。 创建快照 初始化存储库 git init 暂存文件 git add file1.js # Stages a single file git add file1.js file2.js # Stages multiple files git add *.js # Stages with a pattern git add . # Stages the current directory and a