影落离风

The shadow falls away from the wind

0%

git命令

—初始化

1
2
3
4
git config --global user.name "minwk"
git config --global user.email "1294608448@qq.com"
git init
git remote add origin <你的项目地址> //注:项目地址形式为:https://gitee.com/xxx/xxx.git

—拉项目

1
git clone <项目地址>    拉一个项目

—提交

1
2
3
4
git pull origin master
git add .
git commit -m "第一次提交"
git push origin master

—强制提交,舍弃线上版本

1
git push origin dev -f

—修改后提交

1
2
3
4
git status
git add .
git commit -m "第一次提交"
git push origin master

—配置git识别中文

1
2
git config --global core.quotepath false
git status -s

—分支

1
2
3
4
5
6
7
git branch # 列出所有本地分支
git branch -r #列出所有远程分支
git branch [branch-name] #新建一个分支,但依然停留在当前分支
git checkout [branch-name] #切换到指定分支,并更新工作区
git branch -d [branch-name] #删除分支
git push origin --delete [branch-name] #删除远程分支
git branch -dr [remote/branch] #删除远程分支