Git命令行
2020-04-25 本文已影响0人
咖啡少年不加糖whm
给本地的项目创建仓库
git init
克隆远程仓库
git clone https://github.com/xxxxx
克隆分之的代码到本地
git clone -b 分支名 http://github.com/xxxx
添加项目进本地仓库,并提交
git add .
git commit -m "提交"
复制远程仓库地址
git remote add origin https://github.com/xxxx
将远程仓库和本地仓库关联
git branch --set-upstream-to=origin/master
整合远程仓库和本地仓库
git pull --allow-unrelated-histories
拉去远程仓库到本地仓库
git pull origin master
提交本地仓库代码到远程仓库
git push origin master
移除远程仓库关联
git remote rm origin
强制推送(慎用)
git push --force
查看状态
git status
新建分支
git branch 分支名
合并分之(将分之合并到当前分之)
git merge 分支名