bitbucket

JIRA

你。 提交于 2021-01-14 04:49:45
https://www.jianshu.com/p/8c14b52ce692 JIRA这个工具接触有好几年了,在多个海外项目上都用过这个工具。去年又在项目上深度使用后就有点爱不释手了,回国后也在找机会推荐给其它项目上用。最近正好有新项目需要用,借这个机会把JIRA的配置学习的过程记录下来。 JIRA和Atlassian公司 JIRA是Atlassian公司的产品。Atlassian公司于2002在澳大利亚悉尼成立,提供面向企业业务流程的协同办公产品,并于2015年12月在纳斯达克上市。作为一家SaaS公司,不雇佣一个销售人员,仅通过口碑获客,市值达10亿美金级别(64亿美元-2017年3月13日),这也从另外角度反映出这个产品的独特之处。 Atlassian主要有5款产品,分别面向不同的市场。 JIRA(项目任务管理软件) Confluence(企业知识管理与协同软件) BitBucket(代码库) HipChat(内部聊天/协作软件) JIRA Service Desk(服务台软件)。 Atlassian最核心的产品仍然是 JIRA 和 Confluence ,JIRA被业界公认为最好的项目管理和开发管理工具,Confluence 被认为是最好用的企业级知识管理工具。 包括美国航空航天局使用Atlassian来设计火星探测器,Runkeeper使用Atlassian来设计健身应用

bitbucket 上公钥SSH key如何add key并进行项目运用

て烟熏妆下的殇ゞ 提交于 2021-01-09 04:34:40
前提:从sourcetree 添加项目时老是拉取不下来,查到原因是应为bitbucket需要SSH key公钥 目的:公钥相当于你在任何一台电脑只要有公钥授权就可以随时提交代码到服务器 原因: 1、很多搜到的文章写得简单,作为小白有些懂不起,也觉得不是特别详细 2、受人白眼,觉得这么简单都不会,哎! 一、 如何添加公钥 add key 步骤1:执行linux命令 执行目录A --根据自己实际目录 ssh-keygen -t rsa -C "XXX @o utlook.com ” --邮件地址需要更改为自己的邮箱,最好是登录bitbucket的邮箱 步骤2:找公钥 1、在执行目录A下输入 cd .ssh 2、找到 id_rsa.pub --它是公钥 3、vi id_rsa.pub 4、拷贝公钥到文本框 步骤3:bitbucket上add key 1、登录bitbucket --公司提供账号、密码 或者 自己注册 https://bitbucket.org/XX/repositories 2、找到 Bitbucket settings 3、settings->ssh keys->add key 4、将找到的公钥拷贝到如下 注意1:label可以随意命名 注意2:key为id_rsa.pub 里面的公钥 5、add 公钥成功,这下你的账号有访问bitbucket的权限了 步骤 4

免费 | 企业敏捷转型线上峰会

╄→尐↘猪︶ㄣ 提交于 2021-01-02 08:00:25
在本文中, 峰会大咖黄金泽 将从工具链逐步铺开的角度,讲述中国出口信用保险公司IT团队在交付方面如何从“刀耕火种”发展到 DevOps 落地的快速转型。 中国出口信用保险公司 DevOps 的发展历程 中国出口信用保险公司是我国唯一政策性出口信用保险公司,中国信保通过为对外贸易和对外投资合作提供保险等服务,促进对外经济贸易发展。 现阶段公司面临由大到强的整体转型,总部及分支机构迫切需要IT团队提供科技赋能,以用户为中心,实现科技引领的目标。因此IT团队面临很大挑战,传统的IT模式向DevOps转型也成为必然趋势。 项目背景:在企业IT部门转型 DevOps 任务之初,IT团队生产力工具匮乏,仅有的SVN和QC工具已经无法继续与日益增长的需求相匹配,同时,开发、运维间隙越来越大,相关技术积累薄弱、新旧文化冲突突显,转型困难重重。 什么 是 CI/CD 交付通道? Continuous Integration,持续集成包括:源代码变更、自动检测、拉取、构建、单元测试、自动化测试等。 Continuous Delivery,持续交付包括:源代码变更、自动检测、拉取、构建、单元测试、自动化测试、生产交付等 在众多CI/CD交付链介绍中,从CI到CD的区别只是最后能否将代码交付到生产环境。从理论上讲,在CI/CD交付链全部工具和技术就位并运转后,能否交付到生产似乎并不是很困难的问题

How to get BitBucket branch url?

会有一股神秘感。 提交于 2020-12-30 08:16:08
问题 I have a bitbucket repository and I know i can click on Actions tab and click on clone to get the http url of the repository. Now, I have multiple branches in the repository and I am planning to use Jenkins CI to build from a particular branch. Is there a way to get the url of the specific branch in my repository? Regards 回答1: It should be https://bitbucket.org/[username]/[repo_name]/branch/[branch_name] Just replace username, repo_name, and branch_name with your own information. You can git

Getting error “Updates were rejected because the tip of your current branch is behind”

↘锁芯ラ 提交于 2020-12-29 18:17:12
问题 My local system code was synchronized with the remote system at Bitbucket, but there was some problem so I removed the last commit by running git reset --hard HEAD^ . After that I had made some changes and commit those changes. Now when I try to push those changes on the remote, I am getting following message: [vagrant@localhost horizon]$ git push warning: push.default is unset; its implicit value is changing in Git 2.0 from 'matching' to 'simple'. To squelch this message and maintain the

Getting error “Updates were rejected because the tip of your current branch is behind”

♀尐吖头ヾ 提交于 2020-12-29 18:15:17
问题 My local system code was synchronized with the remote system at Bitbucket, but there was some problem so I removed the last commit by running git reset --hard HEAD^ . After that I had made some changes and commit those changes. Now when I try to push those changes on the remote, I am getting following message: [vagrant@localhost horizon]$ git push warning: push.default is unset; its implicit value is changing in Git 2.0 from 'matching' to 'simple'. To squelch this message and maintain the

Getting error “Updates were rejected because the tip of your current branch is behind”

余生颓废 提交于 2020-12-29 18:12:19
问题 My local system code was synchronized with the remote system at Bitbucket, but there was some problem so I removed the last commit by running git reset --hard HEAD^ . After that I had made some changes and commit those changes. Now when I try to push those changes on the remote, I am getting following message: [vagrant@localhost horizon]$ git push warning: push.default is unset; its implicit value is changing in Git 2.0 from 'matching' to 'simple'. To squelch this message and maintain the

Manually create a Git fork

断了今生、忘了曾经 提交于 2020-12-29 09:13:10
问题 If I understand forking, it conceptually involves the following steps: Mirror-clone the source repo to a target repo Set an "upstream" remote on the target repo, pointing to the source repo Some other stuff, like email subscriptions, etc. (not important for this question) This is how it looks like: Original <──upstream─── Forked (server) (server) ↑ │origin │ (local) The key difference from cloning is that these steps are server-side , not local. How do I replicate this manually, on the git

How to clone a bitbucket repository?

血红的双手。 提交于 2020-12-28 13:15:54
问题 Getting back to work after a while it seems I don't know how to clone a bitbucket repository. Any idea why I get the "not found" error? git clone --verbose https://bitbucket.org/helllamer/mod_openid Cloning into 'mod_openid'... remote: Not Found fatal: repository 'https://bitbucket.org/helllamer/mod_openid/' not found System: git version 1.9.1 uname -a Linux openvpnas2 3.13.0-44-generic #73-Ubuntu SMP Tue Dec 16 00:22:43 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux 回答1: This is a Mercurial

How to clone a bitbucket repository?

懵懂的女人 提交于 2020-12-28 13:14:16
问题 Getting back to work after a while it seems I don't know how to clone a bitbucket repository. Any idea why I get the "not found" error? git clone --verbose https://bitbucket.org/helllamer/mod_openid Cloning into 'mod_openid'... remote: Not Found fatal: repository 'https://bitbucket.org/helllamer/mod_openid/' not found System: git version 1.9.1 uname -a Linux openvpnas2 3.13.0-44-generic #73-Ubuntu SMP Tue Dec 16 00:22:43 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux 回答1: This is a Mercurial