git常用命令

git status 查看当前状态

git branch 查看本地分支
git branch -r 查看远程分支
git branch -a 查看所有分支

git commit -am "test" 提交并加注释
git push 推送
git pull 拉取

git checkout develop 切换到develop分支

git merge hailong/drugPage


#工作流程
git checkout hailong/drugPage #切换到当前分支
git add . #暂存所有修改
git commit -am "msg" #提交到本地仓库
git push #推到远程仓库

git checkout develop #切换到develop分支
git pull #拉取最新内容
git merge hailong/drugPage #hailong/drugPage分支合并到develop
git push #推到远程仓库




git init
git config --local user.name "longfeiPHP"
git config --local user.email "506698615@qq.com"

git add .
git commit -m  "first commit"
git remote add origin https://github.com/longfeiPHP/longfeiPHP.git #与远程库关联
git push -u origin master #推送到远程库

 

上一篇:node配置


下一篇:Windows Server 2008 R2 配置AD(Active Directory)域控制器