2020-04-08-using-keybase-for-secure-git-repos

栏目: IT技术 · 发布时间: 4年前

内容简介:TheTo see the git capabilities, try this from the command line:I have a repo of emacs
title date category tags

Using Keybase.io for secure git repos

2020-04-08T16:06

git

git

keybase

secure

repos

The Keybase.io provides a Git server to provide an end-to-end encrypted way to access and store a git remote repo. This is helpful for repos you don't want visible to the public, at any point. Some private repos are still visible in some ways, but the ones on Keybase enjoy strong encryption all the way through.

Keybase command line

To see the git capabilities, try this from the command line:

$ keybase git help
NAME:
   keybase git - Manage git repos

USAGE:
   keybase git <command> [arguments...]

COMMANDS:
   create	Create a personal or team git repository.
   delete	Delete a personal or team git repository.
   gc		Run garbage collection on a personal or team git repository.
   lfs-config	Configures a keybase git checkout to use LFS
   list		List the personal and team git repositories you have access to.
   settings	View and change team repo settings
   help, h	Shows a list of commands or help for one command

How I use it

I have a repo of emacs org-mode files kept in a local .git repo. To make a keybase git remote, I do the following things:

$ pushd ~/org
$ keybase git list
$ keybase git create org-files
$ git remote rename origin oldorigin
$ git remote add origin keybase://private/tamouse_/org-files
$ git push -u origin master

Keybase GUI

You can also create a new repository from the Git tab in the Keybase app.

For existing repos, you can get the remote url to set the local git remote to.

Example

2020-04-08-using-keybase-for-secure-git-repos


以上所述就是小编给大家介绍的《2020-04-08-using-keybase-for-secure-git-repos》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

ES6 标准入门(第2版)

ES6 标准入门(第2版)

阮一峰 / 电子工业出版社 / 2016-1 / 69.00元

ES6(又名 ES2105)是 JavaScript 语言的新标准,2015 年 6 月正式发布后,得到了迅速推广,是目前业界超级活跃的计算机语言。《ES6标准入门(第2版)》是国内仅有的一本 ES6 教程,在前版基础上增补了大量内容——对标准进行了彻底的解读,所有新增的语法知识(包括即将发布的 ES7)都给予了详细介绍,并且紧扣业界开发实践,给出了大量简洁易懂、可以即学即用的示例代码。 《......一起来看看 《ES6 标准入门(第2版)》 这本书的介绍吧!

图片转BASE64编码
图片转BASE64编码

在线图片转Base64编码工具

Base64 编码/解码
Base64 编码/解码

Base64 编码/解码

正则表达式在线测试
正则表达式在线测试

正则表达式在线测试