git 总结

git config --global user.name "";
git config --global user.email "";
创建 git 仓库:

mkdir vueapp
cd   vueapp
git init
touch README.md
git add README.md
git commit -m "first commit";
git remote add origin https://gitee.com/vueapp.git
git push -u origin master
已有仓库?

cd 水文勘察项目vue
git remote add origin https://gitee.com/vueapp.git
git push -u origin master
  git config--global user.name "Your Name"
  git config --global user.email"[email protected]"

//修改user.name //修改user.email
git config --global --replace-all user.name "your user name"
git config --global --replace-all user.email"your user email"

//查看当前用户(global)配置
 git config --global  --list

//查看当前仓库配置信息
 git config --local  --list

# 初始化 在工作路径上创建主分支
git init 

git remote add origin  //git remote add origin https://gitee.com/你的码云用户名/你创建的仓库名.git

//互略目录 策略
touch .gitignore

# 克隆远程仓库
git clone 地址 
# 克隆分支的代码到本地
git clone -b 分支名 地址 


git pull      // 拉
git  checkout  indexswiper      //切换分支
git status          //查看分支

////////
# 将所有文件提交到暂存区
git add . 
 # 一个文件分多次提交
git add -p 文件名
# 提交到仓库
git commit  -m "提交的备注信息"  
git push

///////
git checkout master    //切换到master分支
git merge origin/indexswiper //合并分支
git push          

遇到
hint: Updates were rejected because a pushed branch tip is behind its remote
hint: counterpart. Check out this branch and integrate the remote changes

//变基
 git pull --rebase origin master
//解决冲突
//然后
 git rebase --continue 

你可能感兴趣的:(git 总结)