Ubuntu18.04 GitKraken

rxx@rxx:~/Downloads$ sudo dpkg -i GitKraken-v6.5.1.deb 
[sudo] password for rxx: 
(Reading database ... 266124 files and directories currently installed.)
Preparing to unpack GitKraken-v6.5.1.deb ...
Unpacking gitkraken (6.5.1) over (6.5.1) ...
dpkg: dependency problems prevent configuration of gitkraken:
 gitkraken depends on gconf2; however:
  Package gconf2 is not installed.
 gitkraken depends on gconf-service; however:
  Package gconf-service is not installed.

dpkg: error processing package gitkraken (--install):
 dependency problems - leaving unconfigured
Processing triggers for gnome-menus (3.13.3-11ubuntu1.1) ...
Processing triggers for desktop-file-utils (0.23-1ubuntu3.18.04.2) ...
Processing triggers for mime-support (3.60ubuntu1) ...
Errors were encountered while processing:
 gitkraken
rxx@rxx:~/Downloads$ sudo apt install gconf2
Reading package lists... Done
Building dependency tree       
Reading state information... Done
You might want to run 'apt --fix-broken install' to correct these.
The following packages have unmet dependencies:
 gconf2 : Depends: gconf-service
          Depends: libgconf-2-4 (>= 3.2.6-4ubuntu1) but it is not going to be installed
          Depends: gconf-service-backend (= 3.2.6-4ubuntu1) but it is not going to be installed
 gitkraken : Depends: gconf-service
E: Unmet dependencies. Try 'apt --fix-broken install' with no packages (or specify a solution).
rxx@rxx:~/Downloads$ sudo apt --fix-broken install
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Correcting dependencies... Done
The following package was automatically installed and is no longer required:
  linux-hwe-5.4-headers-5.4.0-53
Use 'sudo apt autoremove' to remove it.
The following additional packages will be installed:
  gconf-service gconf-service-backend gconf2 gconf2-common libgconf-2-4
Suggested packages:
  gconf-defaults-service
The following NEW packages will be installed:
  gconf-service gconf-service-backend gconf2 gconf2-common libgconf-2-4
0 upgraded, 5 newly installed, 0 to remove and 721 not upgraded.
1 not fully installed or removed.
Need to get 911 kB of archives.
After this operation, 8,654 kB of additional disk space will be used.
Do you want to continue? [Y/n] Y
Get:1 http://mirrors.aliyun.com/ubuntu bionic/universe amd64 gconf2-common all 3.2.6-4ubuntu1 [700 kB]
Get:2 http://mirrors.aliyun.com/ubuntu bionic/universe amd64 libgconf-2-4 amd64 3.2.6-4ubuntu1 [84.8 kB]
Get:3 http://mirrors.aliyun.com/ubuntu bionic/universe amd64 gconf-service-backend amd64 3.2.6-4ubuntu1 [58.1 kB]
Get:4 http://mirrors.aliyun.com/ubuntu bionic/universe amd64 gconf-service amd64 3.2.6-4ubuntu1 [2,036 B]
Get:5 http://mirrors.aliyun.com/ubuntu bionic/universe amd64 gconf2 amd64 3.2.6-4ubuntu1 [66.9 kB]
Fetched 911 kB in 2s (426 kB/s)
Selecting previously unselected package gconf2-common.
(Reading database ... 266124 files and directories currently installed.)
Preparing to unpack .../gconf2-common_3.2.6-4ubuntu1_all.deb ...
Unpacking gconf2-common (3.2.6-4ubuntu1) ...
Selecting previously unselected package libgconf-2-4:amd64.
Preparing to unpack .../libgconf-2-4_3.2.6-4ubuntu1_amd64.deb ...
Unpacking libgconf-2-4:amd64 (3.2.6-4ubuntu1) ...
Selecting previously unselected package gconf-service-backend.
Preparing to unpack .../gconf-service-backend_3.2.6-4ubuntu1_amd64.deb ...
Unpacking gconf-service-backend (3.2.6-4ubuntu1) ...
Selecting previously unselected package gconf-service.
Preparing to unpack .../gconf-service_3.2.6-4ubuntu1_amd64.deb ...
Unpacking gconf-service (3.2.6-4ubuntu1) ...
Selecting previously unselected package gconf2.
Preparing to unpack .../gconf2_3.2.6-4ubuntu1_amd64.deb ...
Unpacking gconf2 (3.2.6-4ubuntu1) ...
Setting up gconf2-common (3.2.6-4ubuntu1) ...

Creating config file /etc/gconf/2/path with new version
Processing triggers for sgml-base (1.29) ...
Processing triggers for libc-bin (2.27-3ubuntu1.2) ...
Processing triggers for man-db (2.8.3-2ubuntu0.1) ...
Setting up libgconf-2-4:amd64 (3.2.6-4ubuntu1) ...
Setting up gconf-service-backend (3.2.6-4ubuntu1) ...
Setting up gconf-service (3.2.6-4ubuntu1) ...
Setting up gconf2 (3.2.6-4ubuntu1) ...
Setting up gitkraken (6.5.1) ...
Processing triggers for libc-bin (2.27-3ubuntu1.2) ...
rxx@rxx:~/Downloads$ sudo dpkg -i GitKraken-v6.5.1.deb 
(Reading database ... 266297 files and directories currently installed.)
Preparing to unpack GitKraken-v6.5.1.deb ...
Unpacking gitkraken (6.5.1) over (6.5.1) ...
Setting up gitkraken (6.5.1) ...
Processing triggers for gnome-menus (3.13.3-11ubuntu1.1) ...
Processing triggers for desktop-file-utils (0.23-1ubuntu3.18.04.2) ...
Processing triggers for mime-support (3.60ubuntu1) ...
rxx@rxx:~/Downloads$ 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Ubuntu 18.04中,可以使用Git命令来管理代码仓库。首先,您需要安装Git。可以通过运行以下命令来安装Git: ``` sudo apt-get update sudo apt-get install git ``` 安装完成后,您可以使用以下命令来验证Git是否成功安装: ``` git --version ``` 要使用Git进行代码管理,您可以使用以下命令: - `git init`:在当前目录下创建一个新的Git仓库。 - `git clone [repository]`:从远程仓库克隆一个本地副本。 - `git add [file]`:将文件添加到暂存区。 - `git commit -m "message"`:将暂存区的文件提交到仓库。 - `git status`:查看仓库的当前状态,包括已修改但未提交的文件。 - `git diff [file]`:查看文件的修改内容。 以上是一些常用的Git命令,可以帮助您在Ubuntu 18.04中进行代码管理。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* *2* [Ubuntu 18.04使用git使用教程](https://blog.csdn.net/weixin_37532614/article/details/105650290)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] - *3* [Ubuntu 18.04_ Install Gerrit for Git code review.pdf](https://download.csdn.net/download/iibull_10/12152129)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值