博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
vscode git
阅读量:4629 次
发布时间:2019-06-09

本文共 517 字,大约阅读时间需要 1 分钟。

 

Git 全局设置:git config --global user.name "xxxx" git config --global user.email "123456789@qq.com"创建 git 仓库:mkdir wapcd wapgit inittouch README.mdgit add README.mdgit commit -m "first commit"git remote add origin https://git.oschina.net/name/package.gitgit push -u origin master已有项目?cd existing_git_repogit remote add origin https://git.oschina.net/name/package.git git push -u origin --all // git pull origin master --allow-unrelated-histories// git push -u origin master

 

转载于:https://www.cnblogs.com/ImaY/p/7388473.html

你可能感兴趣的文章
人机猜拳(这是最近的一个总结)
查看>>
python函数
查看>>
模板引擎:Velocity&FreeMarker(转)
查看>>
Anaconda安装,jupyter notebook 使用说明
查看>>
sql server 2014预览版发布
查看>>
正则表达式string对象方法
查看>>
解析json实例
查看>>
spring中实现自己的初始化逻辑
查看>>
Accommodation development for Kaikoura
查看>>
Oracle11.2新特性之listagg函数 (行列转换)
查看>>
Flutter学习之动态ListView
查看>>
myeclipse中安装svn插件
查看>>
微信小程序----调用用户信息
查看>>
Ubuntu系统---安NVIDIA 驱动后 CUDA+cuDNN 安装
查看>>
Spring Boot配置全局异常捕获
查看>>
Java 的zip压缩和解压缩
查看>>
SPOJ375(树链剖分)
查看>>
C基础知识小总结(十)
查看>>
Ignatius and the Princess IV (水题)
查看>>
ConcurrentHashMap实现原理及源码分析
查看>>