查看git配置信息:
git config --list
查看git用户名、密码、邮箱的配置
git config user.name
git config user.password
git config user.email
设置git用户名、密码、邮箱
git config user.name "XXX"
git config user.password "XXX"
git config user.email "XXX"
克隆项目:
git clone https://xxx.com/xxx.git
添加暂存区:
git add .(所有文件)
git add a.js(单个文件)
提交暂存区到本地仓库中:
git commit -m ‘提交备注‘
提交代码:
git push
拉取代码:
git pull
切换分支:
git checkout master
新建分支并切换分支:
git checkout -b master-1
查看本地所有分支名:
git branch -a
查看本地分支:
git branch
查看远程分支:
git branch -r
查看提交记录:
git log
查看提交记录简洁版:
git log --oneline
合并开发分支代码:
git merge develop
合并开发分支的某个文件代码:
git checkout develop a.js
删除开发分支:
git branch -D develop
删除远程开发分支:
git push origin --delete develop
代码临时保存:
git stash
代码临时保存恢复:
git stash pop