TortoiseGit Gitblit使用簡介

2022-08-16 17:36:24 字數 600 閱讀 7882

1. 增加repository

用admin admin登陸後,點選「版本庫」--> 建立版本庫

填寫好 「名稱」和「描述」

然後就可以在客戶端進行 clone 和commit和push

2. 建立新賬戶,新增ssh key

先使用admin賬號登陸,右上角,點選「使用者」--> 新增使用者,「pachel」

再用pachelpachel登陸

新增ssh key

右上角下拉,點選使用者中心 -> ssh keys 新增客戶端主機上用git生成的ssh key就可以。

key檔案在c:\users\peter\.ssh

id_rsa.pub

3. 使用新賬戶轉殖

ssh:

以上設定完畢後能保證git bash命令列下無需輸入密碼clone、push、pull等操作,但是在tortoisegit中進行操作還是要輸入密碼,此時還需要在tortoisegit中設定一下ssh client,修改為git目錄下的ssh.exe,例如:d:\program_files\git\usr\bin\ssh.exe:

Performance Schema使用簡介 一

作者 董紅禹 沃趣科技mysql高階技術專家 performance schema簡介 oracle dba都應該知道 oracle中提供了大量的檢視供dba們排查問題使用,並且有等待事件幫助大家快速定位問題屬於哪一類。mysql 中也有performance schema幫助大家去分析排查問題,並...

Performance Schema使用簡介 一

oracle dba都應該知道 oracle中提供了大量的檢視供dba們排查問題使用,並且有等待事件幫助大家快速定位問題屬於哪一類。mysql 中也有performance schema幫助大家去分析排查問題,並且在5.7中增加了sys schema,將performance schema和info...

git最簡使用

git config global user.name your name git config global user.email email example.com 在專案資料夾上一層 git init git add 將當前資料夾下所有內容交給git管理 git commit m 描述 提交 ...