Loading...
git使用说明目录[TOC]很多地方描述不准确,甚至有错误1.初始化(git init)初始化当前目录git init初始化指定目录git init /path/to/directory常见的后续操作添加文件到暂存区:git add .提交文件:git commit -m "init"连接到远程仓库:git remote add origin <remote_repository_url>推送到远程仓库:git push --set-upstream ori...