* 创建本地及远程仓库 ```shell # 从命令行创建一个新的仓库 touch README.md git init git add README.md git commit -m "first commit" git remote add origin http://x.x.x.x:1314/X6738/yfzx-yn-cloudmirror-group-v3.0.git git push -u origin master # 从命令行推送已经创建的仓库 git remote add origin http://x.x.x.x:1314/X6738/yfzx-yn-cloudmirror-group-v3.0.git git push -u -f origin master ``` * 常用命令 ```shell # 列出本地分支及最后一次提交 git branch -v # 检出远程地址 git clone xxxxxxx.git # 检出远程分支 git clone -b xxx xxxxx.git # 把指定暂存区文件提交到本地仓库 git commit -m "<描述信息>" xxx.java # 提交全部 git commit -m "<描述信息>" * # 从远程仓库获取最新的版本到本地tmp分支 git fetch <远程主机名> <分支名> # 显示提交记录 git log # 本地仓库分支推送到远程仓库 git push <远程仓库> <本地分支名>:<远程分支名> # 列出远程仓库详细信息 git remote -v # 查看本地仓库状态 git status # 从远程仓库获取最新版本 git pull ```