基础操作
git init
创建 git 仓库git clone url [dir]
url:克隆的仓库地址 dir:本机目录`git add . / git add [file1].. /git add [dir]
指定所有/文件/目录到暂存区git pull <remote>
拉取远程仓库的提交信息,保持本地仓库与远程仓库同步git commit -m "msg"
提交缓存内容到仓库 msg:提交信息git push [remote] <branch>
将本地提交推送到远程仓库 remote 远程 branch 分支名称
储藏
储藏(储藏名字)
git stash [save name]
查看储藏列表
git stash list
应用储藏
git stash apply [stash@{?}]
删除储藏
git stash drop [stash@{?}]
工作区和暂存区
git status
参看工作区和暂存区的文件状态git add . / git add [file1].. /git add [dir]
指定所有/文件/目录到暂存区git checkout -- file
丢弃 file 文件git reset
撤销将暂存区文件返回工作区
分支操作
git branch
列出当前仓库所有分支git branch <name>
创建 name 分支git checkout name
切换 name 分支git merge <branch>
将 branch 分支合并到当前分支git branch -d <name>
删除 name 分支