博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
git日常使用
阅读量:5932 次
发布时间:2019-06-19

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

1.stash

git stash save "开发区存储到暂存区"

git stash list 查看所有的暂存区版本

git stash pop 弹出暂存区最后一次存储的版本,会删除并弹出的暂存区

git stash apply stash@{0} 根据指定的暂存区版本还原

git stash drop stash@{0} 删除暂存区

2. remote

git remote -v 查看git远程的地址

git remote remove origin master

git rm -r --cache .

git add .

git commit -m "gitignore working"

git checkout -b branchName(创建新分支)

3.config

git config user.name

git config user.email

git config --global user.name "wucoder"

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

4.push pull

git pull 简单的拉取

git push

 

转载于:https://my.oschina.net/wugong/blog/3020005

你可能感兴趣的文章
Reading papers_11(读Integrating local action elements for action analysis相关文章)
查看>>
PHP访问计数器模块
查看>>
Jquery之ShowLoading遮罩组件
查看>>
使用Fiddler提高前端工作效率 (实例篇)
查看>>
信号量和PV操作写出Bakery算法的同步程序
查看>>
在Qt Creator 和在 vs2012 里添加信号和槽
查看>>
Android自定义单选,自定义选中状态
查看>>
Readprocessmemory使用方法
查看>>
如何让搜索引擎抓取AJAX内容?
查看>>
php memcached-gui工具
查看>>
硬件工程师经典笔试题
查看>>
springmvc请求接收参数的几种方法
查看>>
angularjs指令(二)
查看>>
Caused by: java.lang.ClassNotFoundException: com.mchange.v2.c3p0.ComboPooledDataSource
查看>>
16.3.1-sp_getapplock
查看>>
oc-10-对象做参数
查看>>
常用HiveQL总结
查看>>
JVM虚拟机选项:Xms Xmx PermSize MaxPermSize区别
查看>>
delphi 编译生成ipa文件 adhoc步骤
查看>>
ASP.NET WebAPI 08 Message,HttpConfiguration,DependencyResolver
查看>>