首页 > 其他 > 详细

git 常见命令

时间:2019-01-08 20:50:58      阅读:117      评论:0      收藏:0      [点我收藏+]

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

git 常见命令

原文:https://www.cnblogs.com/antique/p/10240836.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!