Git首次使用教程 1.安装git2.新建一个文件夹,用于作为本地库 eg. project-git在文件夹下 右击选择Git Bash Here,指定当前文件夹为本地库,默认分支mastergit init3.绑定用户git config --global user.name "自定义用户名"git config --global user.email "日后提交代码的git用户的邮箱"4.绑定远程库git remote add origin 远程代码库git remote -v若