会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
xuejianbest
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
31
32
33
34
35
36
37
38
下一页
2018年12月11日
Java:JUnit包
摘要: 依赖及jar包:junit-4.12.jarhamcrest-core-1.3.jar junit junit 4.12简单用例:import static org.junit.Assert.assertArrayEquals;import...
阅读全文
posted @ 2018-12-11 08:47 xuejianbest
阅读(1917)
评论(0)
推荐(0)
2018年12月10日
Git简单命令列表
摘要: 初始化初始化本地空版本库,仓库,英文名repositorymkdir test && cd testgit init克隆项目到本地git clone 远程同步操作关联远程仓库和本地仓库git remote add 提交本地仓库到远程仓库git push [...
阅读全文
posted @ 2018-12-10 10:01 xuejianbest
阅读(110)
评论(0)
推荐(0)
Git基本概念
摘要: 工作区为实际操作的目录版本库为.git目录。Git的版本库又被称为stage(或index)的暂存区,还有Git为我们自动创建的第一个分支master,以及指向master的一个指针HEAD。add会把工作区的修改更新到暂存区commit会把暂存区的内容更新...
阅读全文
posted @ 2018-12-10 10:01 xuejianbest
阅读(111)
评论(0)
推荐(0)
git 常用命令(图)
摘要:
阅读全文
posted @ 2018-12-10 10:01 xuejianbest
阅读(100)
评论(0)
推荐(0)
Git的ssh权限设置
摘要: 一、设置git的user name和email,用于提交时候标识身份$ git config --global user.name "name"$ git config --global user.email "name@mail.com"二、生成密钥ssh...
阅读全文
posted @ 2018-12-10 10:00 xuejianbest
阅读(1538)
评论(0)
推荐(0)
美化git客户端(命令行)
摘要: 显示颜色:git config --global color.ui true配置别名:git config --global alias.st status #用git st代替git statusgit config --global alias.last...
阅读全文
posted @ 2018-12-10 10:00 xuejianbest
阅读(471)
评论(0)
推荐(0)
Git忽略文件:.gitignore
摘要: 文件内容示例:# Windows:Thumbs.dbehthumbs.dbDesktop.ini# Python:*.py[cod]*.so*.egg*.egg-infodistbuild# My configurations:db.inideploy_ke...
阅读全文
posted @ 2018-12-10 10:00 xuejianbest
阅读(203)
评论(0)
推荐(0)
搭建git服务器
摘要: 初始化远程仓库:adduser -s /usr/bin/git-shell -d /home/git -m git # 创建git用户。centos下adduser是useradd的软连接文件。 # -m 同时创建家目录/home/git。# -s 指定用户...
阅读全文
posted @ 2018-12-10 10:00 xuejianbest
阅读(90)
评论(0)
推荐(0)
类github网站
摘要: github: https://github.com码云: https://gitee.com支持MathJax,但是有bug,反馈了根本没人理。BUG详情见:https://gitee.com/xuejianbest/pencoding: https://...
阅读全文
posted @ 2018-12-10 10:00 xuejianbest
阅读(185)
评论(0)
推荐(0)
修改提交用户名邮箱
摘要: 用git commit进行了一次版本提交,并推送到了远程仓库,若是想修改此次提交者用户名邮箱可以这样操作:git commit --amend --author="newname " #丢弃上一次版本提交,然后进行一次同上次一样的新版本提交(两次提交的com...
阅读全文
posted @ 2018-12-10 09:59 xuejianbest
阅读(276)
评论(0)
推荐(0)
上一页
1
···
31
32
33
34
35
36
37
38
下一页
公告