Git 常用命令

克隆代码到本地  git clone url

新增本地分支      git branch

查看本地分支      git branch

查看远程分支      git branch -r

查看所有分支      git branch -a

删除对应分支      git branch -d 

切换分支             git checkout 

查看仓库文件改动状态                  git status

查看文件具体修改内容                   git diff

添加文件/文件夹至缓存区                git add

添加当前目录所有文件至缓存区       git add .

提交缓存区至代码区                          git commit -m [message]

提交缓存区指定文件至仓库区           git commit [file1] [file2] -m [message]

提交代码至远程分支                        git push origin :

你可能感兴趣的:(Git 常用命令)