並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 13 件 / 13件

新着順 人気順

svn work with branchesの検索結果1 - 13 件 / 13件

  • WebKit on GitHub!

    On June 23rd, the WebKit project froze its Subversion tree and transitioned management and interaction with our source code to git on GitHub. Why git? git’s distributed nature makes it easy for not just multiple developers, but multiple organizations to collaborate on a single project. git’s local record of changes makes moving commits between branches or reverting changes simple and quick. git’s

      WebKit on GitHub!
    • Github ActionsからSlackへ通知するのを良い感じにしたい | Spinners Inc.

      この記事はpushをトリガーとしたGitHub Actionsのワークフローを前提として書いています。 概要GitHub Actions、簡単便利で良いですね! ぼくも遅まきながら使いはじめ、先日、Git pushをトリガーにデプロイしてSlackで通知、とよくあるワークフローを追加して運用しはじめました。 Slackへの通知も Marketplace に数ある既存Actionを選んで利用すれば、すぐに実現できました。すごい! ぼくはこんな感じにしたかったとはいえ、贅沢を言えば、ぼくは レガシーなCustom integrationsのIncoming Webhooksでなく、きちんと新しいIncoming Webhooksでやりたいref: https://api.slack.com/legacy/custom-integrations#incoming-webhooksAction独自

        Github ActionsからSlackへ通知するのを良い感じにしたい | Spinners Inc.
      • Why GitHub Actually Won

        A few days ago, a video produced by @t3dotgg was posted to his very popular YouTube channel where he reviews an article written by the Graphite team titled “How GitHub replaced SourceForge as the dominant code hosting platform”. Theo’s title was a little more succinct, “Why GitHub Won”. Being a cofounder of GitHub, I found Greg’s article and Theo’s subsequent commentary fun, but figured that it mi

          Why GitHub Actually Won
        • jj init — Sympolymathesy, by Chris Krycho

          Assumed audience: People who have worked with Git or other modern version control systems like Mercurial, Darcs, Pijul, Bazaar, etc., and have at least a basic idea of how they work. Jujutsu is a new version control system from a software engineer at Google, where it is on track to replace Google’s existing version control systems (historically: Perforce, Piper, and Mercurial). I find it interesti

            jj init — Sympolymathesy, by Chris Krycho
          • Rescue Your Amazon Dash Buttons – Chris Mullins

            Earlier this year, Amazon announced that they’ll discontinue Dash Buttons. I don’t know how successful Dash Buttons were for their intended use, but Home Automation hackers have loved (mis-)using them for everything from warming up their coffee pot to keeping track of bodily functions. Unfortunately for us hackers, Amazon is an unforgiving god. Not only have they stopped selling Dash Buttons, but

            • GitOps

              GitOps Since its inception in 2017 by Weaveworks, GitOps has caused quite some fuss on Twitter and KubeCon. This site aggregates the essence of GitOps to help clear up the confusion about the topic. We’ve written a short book on GitOps. Get it as a free PDF or ePub, or for a small fee as a Kindle eBook or paperback. What is GitOps? GitOps is a way of implementing Continuous Deployment for cloud na

              • An overview of version control in programming – Daniel Lemire's blog

                In practice, computer code is constantly being transformed. At the beginning of a project, the computer code often takes the form of sketches that are gradually refined. Later, the code can be optimized or corrected, sometimes for many years. Soon enough, programmers realized that they needed to not only to store files, but also to keep track of the different versions of a given file. It is no acc

                  An overview of version control in programming – Daniel Lemire's blog
                • A History of Source Control Systems: SCCS and RCS (Part 1)

                  April 5, 2024 · 15 min · 3194 words · David Soria Parra Updates#April 7th, 2024#I received an email from Marc Rochkind. He recounts some details of the creation of SCCS. I attached the email at the end of the article and made corrections inside the article. Most importantly, check out Marc’s original paper. Thank you all for the kind comments and interesting discussion Hacker News and Lobste.rs. H

                    A History of Source Control Systems: SCCS and RCS (Part 1)
                  • BitKeeper, Linux, and licensing disputes: How Linus wrote Git in 14 days

                    BitKeeper, Linux, and licensing disputes: How Linus wrote Git in 14 daysMay 23, 2024 On April 3rd, 2005, Linus cut a Linux kernel release candidate, 2.6.12-rc2. The release candidate itself wasn’t too interesting — in Linus’s words "The diffstat output tells the story: this is a lot of very small changes, ie tons of small cleanups and bug fixes.” — but would become significant for what it marked:

                      BitKeeper, Linux, and licensing disputes: How Linus wrote Git in 14 days
                    • Satoshi Noda's web page: 論文執筆

                      個人メモ このページは自分用メモを公開しているという位置づけです. 自分以外に優しくない書き方をしていると思いますが ご容赦ください. このページ以外に, 以下のメモがあります. GPhys/GGraph チートシート (非公式) (PDF, 2012/02/10 版) チートシートに掲載されている外部リンク (カラーマップについては DCL 7.2.3 のものを参照) ラインタイプ マーカータイプ カラーマップ 座標系 Ruby (Ruby-DCL, GPhys, GGraph) による図表作成やその周辺に関して 公開制限されているメモ (Dennou 非公開領域) 個人メモ(英語) 解析・描画 Postscript font ps, eps ファイルに文字を書き込むときにフォントが指定できる. たいていは Times-Roman か Helvetica で間に合うが, それ以外を使いた

                      • CDK for TerraformでGithub Actionsを使ったCDKデプロイパイプラインを作ってみた | DevelopersIO

                        CX事業部Delivery部の新澤です。 CDKのデプロイをGithub Actionsで実行するパイプラインを作成するにあたって、AWS側とGithub側、両方のリソース作成をコードでいっぺんに終わらせてしまいたかったので、せっかくなので2022年8月にGAされたCDK for Terraform(CDKTF)を使って試してみました。 やってみた 作成するリソースは以下になります。 Github Githubリポジトリ Github Actions シークレット AWS IAM IDプロバイダー IAM Role 準備 CDKTFの初期化を実行します。 いくつかの質問に回答すると、依存ライブラリのインストールが開始されます。 $ cdktf init --template=typescript --local Note: By supplying '--local' option you

                          CDK for TerraformでGithub Actionsを使ったCDKデプロイパイプラインを作ってみた | DevelopersIO
                        • 【Redmine】CentOS7のサーバーにRedmineを導入する(Nginx+Unicron+MySQL) - websandbag ブログ

                          プロジェクト管理をツールを検討すると、Redmineの名前はよく上がります。 redmine.jp 同じようなサービスにBacklogやAsanaのようなツールがあります。 しかし、無償だけでは不十分だったり、機能を追加しようとすると維持費が割と高いのが悩ましい所です。 Redmineであれば、カスタマイズが出来ますし、管理さえ出来ればサーバー代だけで導入出来ます。 最近ではRedmineのテンプレートイメージを導入するだけで作れるサービスもあるので、より簡単に導入する事が出来るようになりました。 www.conoha.jp しかし、 プラグインを導入したり、メール送信設定は管理画面から対応できません。 契約するホスティングサービスやミドルウェアの構成も決められていますので、状況に合わせたカスタマイズも難しいです。 さて、 今回は、土台となるRedmineの環境を一から実装するフローをつい

                            【Redmine】CentOS7のサーバーにRedmineを導入する(Nginx+Unicron+MySQL) - websandbag ブログ
                          • Softwares - 香川大学農学部 ケミカルバイオロジー研究室

                            以下はmacOS Sierra環境での解説です (November 2, 2016).環境: macOS Sierra 10.12.1, 3.3 GHz Intel Core i5, メモリ8 GB. First, install Xquartz (2.7.8) on MacOS Sierra. Xquartz 2.7.11でもOpenmotifとの問題が解決されていませんでした.(Homebrewのopenmotifが修正され,問題が解決されました). まず,最新のXquartzをインストール. Homebrew (Package manager) $ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" Paste that at a Term

                            1