git操作
初始化仓库
//初始化仓库
git init
//从现有的git仓库中拷贝项目
git clone <repo> <directory>
repo: git仓库
directory: 本地目录
//设置提交代码时的用户信息,去掉--global参数则只对当前仓库有效
git config --global user.name "runoob"
git config --global user.email test@runoob.com
//查看提交代码的用户信息
git config user.name
git config user.email
基本操作
//添加多个文件、目录、当前目录下的所有文件到暂存区
git add [file1][file2]...
dit add [dir]
git add .
//查看仓库当前的状态,显示有变更的文件,用'-s'来获取简短的输出结果
git status
git status -s
//提交暂存区代码到本地仓库,'-am'可以跳过add阶段
git commit -m [message]
git commit [file1] [file2] ... -m [message]
git commit -am "message"
//回退版本
git reset --mixed HEAD
git reset --hard HEAD^
git reset --hard HEAD~2
git push origin [branchName] -f
git fetch
git pull origin
git push origin
//查看提交历史,按q退出
git log
查看远程仓库地址:git remote -v
分支部分
显示本地分支:git branch
显示远程分支:git branch -r
创建分支:git branch [branchname]
创建并切换到新分支:git checkout -b [branchname]
切换分支:git checkout [branchname]
删除分支:git branch -d [branchname]
删除远程分支:git push origin --delete [branchname]
合并分支:git merge [branchname] 将名称为name的分支跟当前分支合并
|