git 常见命令

windows + R

cd ......

 

设置账号

git config --global user.name "名称"

git config --global user.email "邮箱"

 

 

初始化版本库 

git init

 

提交暂存

git add -A

 

提交修改内容

git commit -m "first commit”

 

指定云端的项目地址

git remote add origin https://gitee.com/项目地址/项目名称.git

 

拉取云端文件

git pull origin master --allow-unrelated-histories

 

推送同步到远端

git push -u origin master

posted @ 2019-01-08 18:55  Mission。  阅读(106)  评论(0编辑  收藏  举报