常用Git命令

通用命令

// git 初始化
git init

// 本地新增代码
git add README.md

// 把代码提交本地仓库
git commit -m "first commit"

// git 连接远程仓库
git remote add origin 你的远程仓库

// 推送代码到默认远程分支
git push -u origin master

git 分支

// 查看本地分支
git branch

// 查看远程分支
git branch -a

// 创建分支
git branch branch_name

// 删除本地分支
git branch -d branch_name

// 强制删除本地分支
git branch -D branch_name

// 删除远程分支
git branch -r -d origin/branch-name  
git push origin :branch-name 

// 自动跟踪远程分支,并拉取分支到本地
git checkout --track origin/branch_name

// 把本地分支推送到远程分支,并跟踪该分支
git push --set-upstream origin branch_name

// 拉取对应分支代码
git pull origin branch_name

// 合并分支
git merge branch_name

版本回退

// 版本回退到某一次commit
git reset --hard <b3f881faae371ecf59363143b4216daedc0290ba>

// 关联远程分支和本地分支
git branch --set-upstream-to=origin/远程分支名称 本地分支名称

// 合并两个独立启动仓库
git pull origin master --allow-unrelated-histories

注:

// git 报错 1
There is no tracking information for the current branch.
Please specify which branch you want to merge with.
See git-pull(1) for details.

    git pull <remote> <branch>

If you wish to set tracking information for this branch you can do so with:

    git branch --set-upstream-to=origin/<branch> master

// 解决方法 1
git branch --set-upstream-to=origin/<branch> master

// git 报错 2
fatal: refusing to merge unrelated histories

// 解决方法 2
git pull origin master --allow-unrelated-histories
–allow-unrelated-histories

因为他们是两个不同的项目,要把两个不同的项目合并,git需要添加一句代码,在git pull,
这句代码是在git 2.9.2版本发生的,最新的版本需要添加–allow-unrelated-histories。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值